File: SoSpotLight.ivm

package info (click to toggle)
inventor 2.1.5-10-14
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 32,892 kB
  • ctags: 21,729
  • sloc: ansic: 33,867; lisp: 7,361; cpp: 3,874; yacc: 369; sh: 359; perl: 234; awk: 141; makefile: 76; csh: 35; sed: 11
file content (46 lines) | stat: -rw-r--r-- 1,371 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
NAME SoSpotLight SoSpotLt "" {
node representing a spotlight source
}

INCLUDE nodes/SoSpotLight.h

DESC {
This node defines a spotlight style light source.
A spotlight is placed at a
fixed location in 3-space and illuminates in a cone along a particular
direction. The intensity of the illumination drops off exponentially
as a ray of light diverges from this direction toward the edges of the
cone. The rate of drop-off and the angle of the cone are controlled by
the \vdropOffRate\. and \vcutOffAngle\. fields.
}

FIELD location  { Location of the source. }

FIELD direction { Principal direction of illumination (center axis of cone). }

FIELD dropOffRate {
Rate of intensity drop-off per change in angle from primary direction:
0 = constant intensity, 1 = very sharp drop-off
}

FIELD cutOffAngle {
Angle (in radians) outside of which intensity is zero, measured from
the center axis of the cone to an edge.
}

METHOD "" SoSpotLight() {
Creates a spotlight source node with default settings.
}

METHOD "" static SoType getClassTypeId() {
Returns type identifier for this class.
}

ACTION SoGLRenderAction {
Activates this light (if so specified) during traversal. All shape
nodes that come after this light in the scene graph are illuminated by
this light. The light's location is affected by the current
transformation.
}

ALSO { SoDirectionalLight, SoPointLight }