Open Inventor Reference
SoPendulum.h
Go to the documentation of this file.
1/*
2 *
3 * Copyright (C) 2000 Silicon Graphics, Inc. All Rights Reserved.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * Further, this software is distributed without any warranty that it is
16 * free of the rightful claim of any third person regarding infringement
17 * or the like. Any license provided herein, whether implied or
18 * otherwise, applies only to this software file. Patent licenses, if
19 * any, provided herein do not apply to combinations of this program with
20 * other software, or any other product whatsoever.
21 *
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 *
26 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
27 * Mountain View, CA 94043, or:
28 *
29 * http://www.sgi.com
30 *
31 * For further information regarding this notice, see:
32 *
33 * http://oss.sgi.com/projects/GenInfo/NoticeExplan/
34 *
35 */
36
37
38/*
39 * Copyright (C) 1990,91 Silicon Graphics, Inc.
40 *
41 _______________________________________________________________________
42 ______________ S I L I C O N G R A P H I C S I N C . ____________
43 |
44 | $Revision: 1.1.1.1 $
45 |
46 | Description:
47 | This file defines the SoPendulum node class.
48 |
49 | Author(s) : Ronen Barzel
50 |
51 ______________ S I L I C O N G R A P H I C S I N C . ____________
52 _______________________________________________________________________
53 */
54
55#ifndef _SO_PENDULUM_
56#define _SO_PENDULUM_
57
61
62
65
101
103
105
106 public:
108
109
113
117
120
123
125
128
129 SoINTERNAL public:
130 static void initClass();
131
132 protected:
133 virtual ~SoPendulum();
134
135 private:
137 class SoElapsedTime *time;
138 class SoCalculator *calc;
139 class SoInterpolateRotation *interp;
140
142 virtual void write(class SoWriteAction *action);
143
145 class SoEngineOutput *internalConnection;
146
148 virtual void notify(SoNotList *list);
149
150 class SoOneShotSensor *rotationSensor;
151 class SoFieldSensor *rotation0Sensor;
152 class SoFieldSensor *rotation1Sensor;
153 class SoFieldSensor *onSensor;
154
155 static void rotationSensorCB(void *data, class SoSensor *sensor);
156 static void onSensorCB(void *data, class SoSensor *sensor);
157};
158
159#endif /* _SO_PENDULUM_ */
#define SoINTERNAL
Definition SbBasic.h:155
#define INVENTOR_API
Disable some annoying warnings on MSVC 6.
Definition SbSystem.h:77
#define SO_NODE_HEADER(className)
Non-abstract classes have everything abstract classes have, plus a way to create an instance.
Definition SoSubNode.h:170
A general-purpose calculator.
Basic controllable time source.
Class for all engine outputs.
Definition SoEngine.h:228
Sensor class that can be attached to Inventor fields.
Interpolates rotation values.
virtual void notify(SoNotList *list)
Propagates modification notification through an instance.
virtual void write(SoWriteAction *action)
Holds a list of SoNotRec notification records.
Sensor for one-time only callbacks.
Animated oscillating rotation node.
Definition SoPendulum.h:102
SoSFFloat speed
Defines the speed of the pendulum, in cycles per second.
Definition SoPendulum.h:119
SoSFRotation rotation0
These define the two fixed rotations that are interpolated to create the pendular motion.
Definition SoPendulum.h:112
SoPendulum()
Creates a pendulum node with default settings.
static void initClass()
SoSFRotation rotation1
These define the two fixed rotations that are interpolated to create the pendular motion.
Definition SoPendulum.h:116
SoSFBool on
Allows applications to enable or disable the motion easily.
Definition SoPendulum.h:122
virtual ~SoPendulum()
Node representing a 3D rotation about an arbitrary axis.
Definition SoRotation.h:94
Field containing a single boolean value.
Definition SoSFBool.h:78
Field containing a floating-point value.
Definition SoSFFloat.h:77
Field containing a rotation.
Abstract base class for Inventor sensors.
Definition SoSensor.h:108
Writes a scene graph to a file.