SoSpotLightManip(3IV) - Online Linux Manual Page
NAMESoSpotLightManip — spotlight node with 3D interface for editing location, direction, and beam width
INHERITS FROMSoBase > SoFieldContainer > SoNode > SoLight > SoSpotLight > SoSpotLightManip
SYNOPSIS¶\f7#include <Inventor/manips/SoSpotLightManip.h> Fields from class SoSpotLight: \f8location
\f8direction
\f8dropOffRate
\f8cutOffAngle Fields from class SoLight: \f8on
\f8intensity
\f8color Methods from class SoSpotLightManip: \f8SoSpotLightManip\*(Cr()
\f8getDragger\*(Cr()
\f8replaceNode\*(Cr(SoPath *p )
\f8replaceManip\*(Cr(SoPath *p, SoSpotLight *newOne ) const
\f8getClassTypeId\*(Cr() Methods from class SoNode: \f8setOverride\*(Cr(SbBool state)
\f8isOverride\*(Cr() const
\f8copy\*(Cr(SbBool copyConnections = FALSE) const
\f8affectsState\*(Cr() const
\f8getByName\*(Cr(const SbName &name)
\f8getByName\*(Cr(const SbName &name, SoNodeList &list) Methods from class SoFieldContainer: \f8setToDefaults\*(Cr()
\f8hasDefaultValues\*(Cr() const
\f8fieldsAreEqual\*(Cr(const SoFieldContainer *fc) const
\f8copyFieldValues\*(Cr(const SoFieldContainer *fc, SbBool copyConnections = FALSE)
\f8set\*(Cr(const char *fieldDataString)
\f8get\*(Cr(SbString &fieldDataString)
\f8getFields\*(Cr(SoFieldList &resultList) const
\f8getField\*(Cr(const SbName &fieldName) const
\f8getFieldName\*(Cr(const SoField *field, SbName &fieldName) const
\f8isNotifyEnabled\*(Cr() const
\f8enableNotify\*(Cr(SbBool flag) Methods from class SoBase: \f8ref\*(Cr()
\f8unref\*(Cr() const
\f8unrefNoDelete\*(Cr() const
\f8touch\*(Cr()
\f8getTypeId\*(Cr() const
\f8isOfType\*(Cr(SoType type) const
\f8setName\*(Cr(const SbName &name)
\f8getName\*(Cr() const
DESCRIPTION\f8SoSpotLightManip\f1 is the base class for all \*(CbSoSpotLight\f1 nodes that have a built-in 3D user interface (this is the only such class provided with the Inventor toolkit). Since it is derived from \*(CbSoSpotLight\f1, any changes to its fields result in a change of lighting for nodes that follow it in the scene graph. In this case, the interface edits the \f8location\f1, \*(Cbdirection\f1, and \*(CbcutOffAngle\f1 fields. Also, the color of the manipulator's geometry will reflect the color of the light (but you can not edit the color using this manipulator). Typically, you will want to replace a regular \f8SoSpotLight\f1 with an \*(CbSoSpotLightManip\f1 (as when the user selects a light to be edited), or vice versa (as when the user is done moving the light and the interface should go away). Use the \f8replaceNode()\f1 method to insert a manipulator into a scene graph, and the \*(CbreplaceManip()\f1 method to remove it when done. The \f8SoSpotLightManip\f1 utilizes an \*(CbSoSpotLightDragger\f1 to provide a 3D interface. However, the manipulator differs from the dragger; it lights other objects in the scene because, as an \f8SoSpotLight\f1, it alters the state. The fields values and movement of the dragger, on the other hand, affect only the dragger itself. To find out more about how the interface works and what each part will do, see the reference page for \f8SoSpotLightDragger\f1. The interfaces of the dragger and the manipulator are identical. The \f8SoSpotLightManip\f1 utilizes its dragger by adding it as a hidden child. When an action is applied to the manipulator, such as rendering or handling events, the manipulator first traverses the dragger, and then the manipulator adds its lighting parameters to the state. When you click-drag-release over the manipulator, it passes these events down to the dragger, which moves as a result ("I can't help it, I'm a dragger!"). The manipulator maintains consistency between the fields of the dragger and its own fields. Let's say you use the mouse to widen the cone of the dragger. Callbacks insure that the \f8cutOffAngle\f1 field of the \f2manipulator\f1 will change by the same amount, thus changing the lighting of nodes which follow in the scene graph. Similarly, if you set the \f8cutOffAngle\f1 field of the \*(CbSoSpotLightManip\f1, the manipulator will widen the beam of the dragger accordingly. Because the dragger is a hidden child, you can see the dragger on screen and interact with it, but the dragger does not show up when you write the manipulator to file. Also, any \f8SoPath\f1 will end at the manipulator. (See the Actions section of this reference page for a complete description of when the dragger is traversed). If you want to get a pointer to the dragger you can get it from the manipulator using the \f8getDragger()\f1 method. You will need to do this if you want to change the geometry of a manipulator, since the geometry actually belongs to the dragger.
METHODS\f8SoSpotLightManip\*(Cr()
Constructor. \f8getDragger\*(Cr()
Returns a pointer to the dragger being used by this manipulator. Given this pointer, you can customize the dragger just like you would any other dragger. You can change geometry using the \f8setPart()\f1 method, or add callbacks using the methods found in the \f8SoDragger\f1 reference page. \f8replaceNode\*(Cr(SoPath *p )
Replaces the tail of the path with this manipulator. The tail of the path must be an \f8SoSpotLight\f1 node (or subclass thereof). If the path has a nodekit, this will try to use \*(CbsetPart()\f1 to insert the manipulator. Otherwise, the manipulator requires that the next to last node in the path chain be a group. The field values from the spotlight node will be copied to this manipulator, and the light node will be replaced. The manipulator will not call \f8ref()\f1 on the node it is replacing. The old node will disappear if it has no references other than from the input path \*(Crp\f1 and its parent, since this manipulator will be replacing it in both of those places. Nor will the manipulator make any changes to field connections of the old node. The calling process is thus responsible for keeping track of its own nodes and field connections. \f8replaceManip\*(Cr(SoPath *p, SoSpotLight *newOne ) const
Replaces the tail of the path, which must be this manipulator, with the given \f8SoSpotLight\f1 node. If the path has a nodekit, this will try to use \*(CbsetPart()\f1 to insert the new node. Otherwise, the manipulator requires that the next to last node in the path chain be a group. The field values from the manipulator will be copied to the spotlight node, and the manipulator will be replaced. The manipulator will not call \f8ref()\f1 or \*(Cbunref()\f1 on the node which is replacing it, nor will it make any changes to field connections. The calling process is thus responsible for keeping track of its own nodes and field connections. \f8getClassTypeId\*(Cr()
Returns type identifier for this class.
ACTION BEHAVIOR\f8SoGLRenderAction, SoCallbackAction, SoGetBoundingBoxAction, SoGetMatrixAction, SoHandleEventAction, SoRayPickAction
First, traverses the dragger the way an \f8SoGroup\f1 would. All draggers place themselves in space, but leave the current transformation unchanged when finished. Then the \*(CbSoSpotLightManip\f1 adds a spotlight to the state, just like its base class, \f8SoSpotLight\f1. \f8SoSearchAction
Searches just like an \f8SoSpotLight\f1. Does not search the dragger, which is a hidden child. \f8SoWriteAction
Writes out just like an \f8SoSpotLight\f1. Does not write the dragger, which is a hidden child. If you really need to write valuable information about the dragger, such as customized geometry, you can retrieve the dragger with the \f8getDragger()\f1 method and then write it out separately.
FILE FORMAT/DEFAULTS\f7SpotLightManip {
on TRUE
intensity 1
color 1 1 1
location 0 0 1
direction 0 0 -1
dropOffRate 0
cutOffAngle 0.785398
}
SEE ALSO
\f8SoDragger, SoSpotLight, SoSpotLightDragger, SoDirectionalLightManip, SoPointLightManip 0
Johanes Gumabo
Data Size : 24,176 byte
man-SoSpotLightManip.3ivBuild : 2024-12-05, 20:55 :
Visitor Screen : x
Visitor Counter ( page / site ) : 2 / 201,122
Visitor ID : :
Visitor IP : 3.135.186.233 :
Visitor Provider : AMAZON-02 :
Provider Position ( lat x lon ) : 39.962500 x -83.006100 : x
Provider Accuracy Radius ( km ) : 1000 :
Provider City : Columbus :
Provider Province : Ohio , : ,
Provider Country : United States :
Provider Continent : North America :
Visitor Recorder : Version :
Visitor Recorder : Library :
Online Linux Manual Page : Version : Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 24.12.05
Online Linux Manual Page : Library : lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Online Linux Manual Page : Library : lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Data Base : Version : Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38
Data Base : Library : lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36
Very long time ago, I have the best tutor, Wenzel Svojanovsky . If someone knows the email address of Wenzel Svojanovsky , please send an email to johanes_gumabo@yahoo.co.id .
If error, please print screen and send to johanes_gumabo@yahoo.co.id
Under development. Support me via PayPal.
ERROR : Need New Coding : (rof_escape_sequence|91|SoSpotLightManip.3iv|7/8|\f7 |. ds Cr \f7
) (rof_escape_sequence|91|SoSpotLightManip.3iv|9|\f8 |. ds Cb \f8
) (rof_escape_sequence|91|SoSpotLightManip.3iv|18|\f7#include |¶\*(Cr#include
) (rof_escape_sequence|91|SoSpotLightManip.3iv|28|\f7SoSFVec3f |.ds Pt \*(CrSoSFVec3f
) (parse_manual_page_|249|SoSpotLightManip.3iv|35/36|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|35/36|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|37/38|\f7SoSFVec3f \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|37/38|\f7SoSFVec3f \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|39|\f8location |\*(Cblocation
) (rof_escape_sequence|91|SoSpotLightManip.3iv|44|\f7SoSFVec3f |.ds Pt \*(CrSoSFVec3f
) (parse_manual_page_|249|SoSpotLightManip.3iv|51/52|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|51/52|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|53/54|\f7SoSFVec3f \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|53/54|\f7SoSFVec3f \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|55|\f8direction |\*(Cbdirection
) (rof_escape_sequence|91|SoSpotLightManip.3iv|60|\f7SoSFFloat |.ds Pt \*(CrSoSFFloat
) (parse_manual_page_|249|SoSpotLightManip.3iv|67/68|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|67/68|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|69/70|\f7SoSFFloat \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|69/70|\f7SoSFFloat \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|71|\f8dropOffRate |\*(CbdropOffRate
) (rof_escape_sequence|91|SoSpotLightManip.3iv|76|\f7SoSFFloat |.ds Pt \*(CrSoSFFloat
) (parse_manual_page_|249|SoSpotLightManip.3iv|83/84|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|83/84|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|85/86|\f7SoSFFloat \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|85/86|\f7SoSFFloat \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|87|\f8cutOffAngle |\*(CbcutOffAngle
) (rof_escape_sequence|91|SoSpotLightManip.3iv|97|\f7SoSFBool |.ds Pt \*(CrSoSFBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|104/105|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|104/105|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|106/107|\f7SoSFBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|106/107|\f7SoSFBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|108|\f8on |\*(Cbon
) (rof_escape_sequence|91|SoSpotLightManip.3iv|113|\f7SoSFFloat |.ds Pt \*(CrSoSFFloat
) (parse_manual_page_|249|SoSpotLightManip.3iv|120/121|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|120/121|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|122/123|\f7SoSFFloat \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|122/123|\f7SoSFFloat \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|124|\f8intensity |\*(Cbintensity
) (rof_escape_sequence|91|SoSpotLightManip.3iv|129|\f7SoSFColor |.ds Pt \*(CrSoSFColor
) (parse_manual_page_|249|SoSpotLightManip.3iv|136/137|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|136/137|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|138/139|\f7SoSFColor \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|138/139|\f7SoSFColor \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|140|\f8color |\*(Cbcolor
) (rof_escape_sequence|91|SoSpotLightManip.3iv|150|\f7 |.ds Pt \*(Cr
) (parse_manual_page_|249|SoSpotLightManip.3iv|157/158|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|157/158|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|159/160|\f7 \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|159/160|\f7 \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|161|\f8SoSpotLightManip\*(Cr() |\*(CbSoSpotLightManip\*(Cr()
) (rof_escape_sequence|91|SoSpotLightManip.3iv|166|\f7SoDragger * |.ds Pt \*(CrSoDragger *
) (parse_manual_page_|249|SoSpotLightManip.3iv|173/174|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|173/174|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|175/176|\f7SoDragger * \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|175/176|\f7SoDragger * \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|177|\f8getDragger\*(Cr() |\*(CbgetDragger\*(Cr()
) (rof_escape_sequence|91|SoSpotLightManip.3iv|182|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|189/190|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|189/190|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|191/192|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|191/192|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|193|\f8replaceNode\*(Cr(SoPath *p ) |\*(CbreplaceNode\*(Cr(SoPath *p )
) (rof_escape_sequence|91|SoSpotLightManip.3iv|198|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|205/206|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|205/206|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|207/208|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|207/208|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|209|\f8replaceManip\*(Cr(SoPath *p, SoSpotLight *newOne ) const |\*(CbreplaceManip\*(Cr(SoPath *p, SoSpotLight *newOne ) const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|214|\f7static SoType |.ds Pt \*(Crstatic SoType
) (parse_manual_page_|249|SoSpotLightManip.3iv|221/222|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|221/222|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|223/224|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|223/224|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|225|\f8getClassTypeId\*(Cr() |\*(CbgetClassTypeId\*(Cr()
) (rof_escape_sequence|91|SoSpotLightManip.3iv|235|\f7void |.ds Pt \*(Crvoid
) (parse_manual_page_|249|SoSpotLightManip.3iv|242/243|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|242/243|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|244/245|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|244/245|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|246|\f8setOverride\*(Cr(SbBool state) |\*(CbsetOverride\*(Cr(SbBool state)
) (rof_escape_sequence|91|SoSpotLightManip.3iv|251|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|258/259|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|258/259|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|260/261|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|260/261|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|262|\f8isOverride\*(Cr() const |\*(CbisOverride\*(Cr() const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|267|\f7SoNode * |.ds Pt \*(CrSoNode *
) (parse_manual_page_|249|SoSpotLightManip.3iv|274/275|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|274/275|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|276/277|\f7SoNode * \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|276/277|\f7SoNode * \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|278|\f8copy\*(Cr(SbBool copyConnections = FALSE) const |\*(Cbcopy\*(Cr(SbBool copyConnections = FALSE) const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|283|\f7virtual SbBool |.ds Pt \*(Crvirtual SbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|290/291|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|290/291|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|292/293|\f7virtual SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|292/293|\f7virtual SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|294|\f8affectsState\*(Cr() const |\*(CbaffectsState\*(Cr() const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|299|\f7static SoNode * |.ds Pt \*(Crstatic SoNode *
) (parse_manual_page_|249|SoSpotLightManip.3iv|306/307|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|306/307|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|308/309|\f7static SoNode * \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|308/309|\f7static SoNode * \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|310|\f8getByName\*(Cr(const SbName &name) |\*(CbgetByName\*(Cr(const SbName &name)
) (rof_escape_sequence|91|SoSpotLightManip.3iv|315|\f7static int |.ds Pt \*(Crstatic int
) (parse_manual_page_|249|SoSpotLightManip.3iv|322/323|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|322/323|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|324/325|\f7static int \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|324/325|\f7static int \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|326|\f8getByName\*(Cr(const SbName &name, SoNodeList &list) |\*(CbgetByName\*(Cr(const SbName &name, SoNodeList &list)
) (rof_escape_sequence|91|SoSpotLightManip.3iv|336|\f7void |.ds Pt \*(Crvoid
) (parse_manual_page_|249|SoSpotLightManip.3iv|343/344|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|343/344|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|345/346|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|345/346|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|347|\f8setToDefaults\*(Cr() |\*(CbsetToDefaults\*(Cr()
) (rof_escape_sequence|91|SoSpotLightManip.3iv|352|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|359/360|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|359/360|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|361/362|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|361/362|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|363|\f8hasDefaultValues\*(Cr() const |\*(CbhasDefaultValues\*(Cr() const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|368|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|375/376|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|375/376|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|377/378|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|377/378|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|379|\f8fieldsAreEqual\*(Cr(const SoFieldContainer *fc) const |\*(CbfieldsAreEqual\*(Cr(const SoFieldContainer *fc) const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|384|\f7void |.ds Pt \*(Crvoid
) (parse_manual_page_|249|SoSpotLightManip.3iv|391/392|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|391/392|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|393/394|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|393/394|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|395|\f8copyFieldValues\*(Cr(const SoFieldContainer *fc, SbBool copyConnections = FALSE) |\*(CbcopyFieldValues\*(Cr(const SoFieldContainer *fc, SbBool copyConnections = FALSE)
) (rof_escape_sequence|91|SoSpotLightManip.3iv|400|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|407/408|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|407/408|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|409/410|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|409/410|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|411|\f8set\*(Cr(const char *fieldDataString) |\*(Cbset\*(Cr(const char *fieldDataString)
) (rof_escape_sequence|91|SoSpotLightManip.3iv|416|\f7void |.ds Pt \*(Crvoid
) (parse_manual_page_|249|SoSpotLightManip.3iv|423/424|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|423/424|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|425/426|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|425/426|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|427|\f8get\*(Cr(SbString &fieldDataString) |\*(Cbget\*(Cr(SbString &fieldDataString)
) (rof_escape_sequence|91|SoSpotLightManip.3iv|432|\f7virtual int |.ds Pt \*(Crvirtual int
) (parse_manual_page_|249|SoSpotLightManip.3iv|439/440|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|439/440|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|441/442|\f7virtual int \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|441/442|\f7virtual int \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|443|\f8getFields\*(Cr(SoFieldList &resultList) const |\*(CbgetFields\*(Cr(SoFieldList &resultList) const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|448|\f7virtual SoField * |.ds Pt \*(Crvirtual SoField *
) (parse_manual_page_|249|SoSpotLightManip.3iv|455/456|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|455/456|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|457/458|\f7virtual SoField * \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|457/458|\f7virtual SoField * \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|459|\f8getField\*(Cr(const SbName &fieldName) const |\*(CbgetField\*(Cr(const SbName &fieldName) const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|464|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|471/472|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|471/472|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|473/474|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|473/474|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|475|\f8getFieldName\*(Cr(const SoField *field, SbName &fieldName) const |\*(CbgetFieldName\*(Cr(const SoField *field, SbName &fieldName) const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|480|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|487/488|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|487/488|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|489/490|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|489/490|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|491|\f8isNotifyEnabled\*(Cr() const |\*(CbisNotifyEnabled\*(Cr() const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|496|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|503/504|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|503/504|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|505/506|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|505/506|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|507|\f8enableNotify\*(Cr(SbBool flag) |\*(CbenableNotify\*(Cr(SbBool flag)
) (rof_escape_sequence|91|SoSpotLightManip.3iv|517|\f7void |.ds Pt \*(Crvoid
) (parse_manual_page_|249|SoSpotLightManip.3iv|524/525|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|524/525|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|526/527|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|526/527|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|528|\f8ref\*(Cr() |\*(Cbref\*(Cr()
) (rof_escape_sequence|91|SoSpotLightManip.3iv|533|\f7void |.ds Pt \*(Crvoid
) (parse_manual_page_|249|SoSpotLightManip.3iv|540/541|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|540/541|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|542/543|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|542/543|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|544|\f8unref\*(Cr() const |\*(Cbunref\*(Cr() const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|549|\f7void |.ds Pt \*(Crvoid
) (parse_manual_page_|249|SoSpotLightManip.3iv|556/557|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|556/557|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|558/559|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|558/559|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|560|\f8unrefNoDelete\*(Cr() const |\*(CbunrefNoDelete\*(Cr() const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|565|\f7void |.ds Pt \*(Crvoid
) (parse_manual_page_|249|SoSpotLightManip.3iv|572/573|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|572/573|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|574/575|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|574/575|\f7void \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|576|\f8touch\*(Cr() |\*(Cbtouch\*(Cr()
) (rof_escape_sequence|91|SoSpotLightManip.3iv|581|\f7virtual SoType |.ds Pt \*(Crvirtual SoType
) (parse_manual_page_|249|SoSpotLightManip.3iv|588/589|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|588/589|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|590/591|\f7virtual SoType \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|590/591|\f7virtual SoType \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|592|\f8getTypeId\*(Cr() const |\*(CbgetTypeId\*(Cr() const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|597|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|604/605|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|604/605|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|606/607|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|606/607|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|608|\f8isOfType\*(Cr(SoType type) const |\*(CbisOfType\*(Cr(SoType type) const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|613|\f7virtual void |.ds Pt \*(Crvirtual void
) (parse_manual_page_|249|SoSpotLightManip.3iv|620/621|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|620/621|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|622/623|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|622/623|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|624|\f8setName\*(Cr(const SbName &name) |\*(CbsetName\*(Cr(const SbName &name)
) (rof_escape_sequence|91|SoSpotLightManip.3iv|629|\f7virtual SbName |.ds Pt \*(Crvirtual SbName
) (parse_manual_page_|249|SoSpotLightManip.3iv|636/637|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|636/637|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|638/639|\f7virtual SbName \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|638/639|\f7virtual SbName \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|640|\f8getName\*(Cr() const |\*(CbgetName\*(Cr() const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|643|\f8SoSpotLightManip\f1 is the base class for all \*(CbSoSpotLight\f1 nodes that have a built-in 3D user interface (this is the only such class provided with the Inventor toolkit). Since it is derived from \*(CbSoSpotLight\f1, any changes to its fields result |\*(CbSoSpotLightManip\f1 is the base class for all \*(CbSoSpotLight\f1 nodes that have a built-in 3D user interface (this is the only such class provided with the Inventor toolkit). Since it is derived from \*(CbSoSpotLight\f1, any changes to its fields result
) (rof_escape_sequence|91|SoSpotLightManip.3iv|644|\f8location\f1, \*(Cbdirection\f1, and \*(CbcutOffAngle\f1 fields. Also, the color of the manipulator's geometry will reflect the color of the |\&in a change of lighting for nodes that follow it in the scene graph. In this case, the interface edits the \*(Cblocation\f1, \*(Cbdirection\f1, and \*(CbcutOffAngle\f1 fields. Also, the color of the manipulator's geometry will reflect the color of the
) (rof_escape_sequence|91|SoSpotLightManip.3iv|647|\f8SoSpotLight\f1 with an \*(CbSoSpotLightManip\f1 (as when the user selects a light to be edited), or vice versa (as when the user is |Typically, you will want to replace a regular \*(CbSoSpotLight\f1 with an \*(CbSoSpotLightManip\f1 (as when the user selects a light to be edited), or vice versa (as when the user is
) (rof_escape_sequence|91|SoSpotLightManip.3iv|648|\f8replaceNode()\f1 method to insert a manipulator into a scene graph, and the \*(CbreplaceManip()\f1 method to remove it when done. |\&done moving the light and the interface should go away). Use the \*(CbreplaceNode()\f1 method to insert a manipulator into a scene graph, and the \*(CbreplaceManip()\f1 method to remove it when done.
) (rof_escape_sequence|91|SoSpotLightManip.3iv|650|\f8SoSpotLightManip\f1 utilizes an \*(CbSoSpotLightDragger\f1 to provide a 3D interface. However, |The \*(CbSoSpotLightManip\f1 utilizes an \*(CbSoSpotLightDragger\f1 to provide a 3D interface. However,
) (rof_escape_sequence|91|SoSpotLightManip.3iv|651|\f8SoSpotLight\f1, it alters the state. The fields values and movement of the dragger, on the other hand, affect only the |\&the manipulator differs from the dragger; it lights other objects in the scene because, as an \*(CbSoSpotLight\f1, it alters the state. The fields values and movement of the dragger, on the other hand, affect only the
) (rof_escape_sequence|91|SoSpotLightManip.3iv|652|\f8SoSpotLightDragger\f1. The interfaces of the dragger and the manipulator are identical. |\&dragger itself. To find out more about how the interface works and what each part will do, see the reference page for \*(CbSoSpotLightDragger\f1. The interfaces of the dragger and the manipulator are identical.
) (rof_escape_sequence|91|SoSpotLightManip.3iv|654|\f8SoSpotLightManip\f1 utilizes its |The \*(CbSoSpotLightManip\f1 utilizes its
) (rof_escape_sequence|91|SoSpotLightManip.3iv|659|\f8cutOffAngle\f1 field of the \f2manipulator\f1 will change by the same amount, |\&maintains consistency between the fields of the dragger and its own fields. Let's say you use the mouse to widen the cone of the \f2dragger\f1. Callbacks insure that the \*(CbcutOffAngle\f1 field of the \f2manipulator\f1 will change by the same amount,
) (rof_escape_sequence|91|SoSpotLightManip.3iv|660|\f8cutOffAngle\f1 field of the \*(CbSoSpotLightManip\f1, the manipulator will widen the beam of the dragger accordingly. |\&thus changing the lighting of nodes which follow in the scene graph. Similarly, if you set the \*(CbcutOffAngle\f1 field of the \*(CbSoSpotLightManip\f1, the manipulator will widen the beam of the dragger accordingly.
) (rof_escape_sequence|91|SoSpotLightManip.3iv|663|\f8SoPath\f1 will end at the manipulator. (See the Actions section |\&a \f2hidden\f1 child, you can see the dragger on screen and interact with it, but the dragger does not show up when you write the manipulator to file. Also, any \*(CbSoPath\f1 will end at the manipulator. (See the Actions section
) (rof_escape_sequence|91|SoSpotLightManip.3iv|666|\f8getDragger()\f1 method. You will need |If you want to get a pointer to the dragger you can get it from the manipulator using the \*(CbgetDragger()\f1 method. You will need
) (rof_escape_sequence|91|SoSpotLightManip.3iv|673|\f7 |.ds Pt \*(Cr
) (parse_manual_page_|249|SoSpotLightManip.3iv|680/681|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|680/681|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|682/683|\f7 \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|682/683|\f7 \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|684|\f8SoSpotLightManip\*(Cr() |\*(CbSoSpotLightManip\*(Cr()
) (rof_escape_sequence|91|SoSpotLightManip.3iv|693|\f7SoDragger * |.ds Pt \*(CrSoDragger *
) (parse_manual_page_|249|SoSpotLightManip.3iv|700/701|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|700/701|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|702/703|\f7SoDragger * \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|702/703|\f7SoDragger * \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|704|\f8getDragger\*(Cr() |\*(CbgetDragger\*(Cr()
) (rof_escape_sequence|91|SoSpotLightManip.3iv|707|\f8setPart()\f1 method, or |\f1Returns a pointer to the dragger being used by this manipulator. Given this pointer, you can customize the dragger just like you would any other dragger. You can change geometry using the \*(CbsetPart()\f1 method, or
) (rof_escape_sequence|91|SoSpotLightManip.3iv|708|\f8SoDragger\f1 reference page. |\&add callbacks using the methods found in the \*(CbSoDragger\f1 reference page.
) (rof_escape_sequence|91|SoSpotLightManip.3iv|714|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|721/722|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|721/722|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|723/724|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|723/724|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|725|\f8replaceNode\*(Cr(SoPath *p ) |\*(CbreplaceNode\*(Cr(SoPath *p )
) (rof_escape_sequence|91|SoSpotLightManip.3iv|728|\f8SoSpotLight\f1 node (or subclass thereof). If the path has a nodekit, this will try to use \*(CbsetPart()\f1 to insert the manipulator. Otherwise, the |\f1Replaces the tail of the path with this manipulator. The tail of the path must be an \*(CbSoSpotLight\f1 node (or subclass thereof). If the path has a nodekit, this will try to use \*(CbsetPart()\f1 to insert the manipulator. Otherwise, the
) (rof_escape_sequence|91|SoSpotLightManip.3iv|734|\f8ref()\f1 on the node it is replacing. The old node will disappear if it has no references other than from the input path \*(Crp\f1 and its parent, since this manipulator will be replacing it in both of those |\&will not call \*(Cbref()\f1 on the node it is replacing. The old node will disappear if it has no references other than from the input path \*(Crp\f1 and its parent, since this manipulator will be replacing it in both of those
) (rof_escape_sequence|91|SoSpotLightManip.3iv|741|\f7SbBool |.ds Pt \*(CrSbBool
) (parse_manual_page_|249|SoSpotLightManip.3iv|748/749|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|748/749|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|750/751|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|750/751|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|752|\f8replaceManip\*(Cr(SoPath *p, SoSpotLight *newOne ) const |\*(CbreplaceManip\*(Cr(SoPath *p, SoSpotLight *newOne ) const
) (rof_escape_sequence|91|SoSpotLightManip.3iv|755|\f8SoSpotLight\f1 node. If the path has a nodekit, this will try to use \*(CbsetPart()\f1 to insert the new node. Otherwise, the manipulator requires that the |\f1Replaces the tail of the path, which must be this manipulator, with the given \*(CbSoSpotLight\f1 node. If the path has a nodekit, this will try to use \*(CbsetPart()\f1 to insert the new node. Otherwise, the manipulator requires that the
) (rof_escape_sequence|91|SoSpotLightManip.3iv|760|\f8ref()\f1 or \*(Cbunref()\f1 on the |The manipulator will not call \*(Cbref()\f1 or \*(Cbunref()\f1 on the
) (rof_escape_sequence|91|SoSpotLightManip.3iv|767|\f7static SoType |.ds Pt \*(Crstatic SoType
) (parse_manual_page_|249|SoSpotLightManip.3iv|774/775|el══─{─══.ne|.el══─{─══.ne 2
) (htmlprn|149|SoSpotLightManip.3iv|774/775|.el══─{─══.ne 2 |.el══─{─══.ne 2
) (rof_escape_sequence|91|SoSpotLightManip.3iv|776/777|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══
) (htmlprn|149|SoSpotLightManip.3iv|776/777|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══
) (rof_escape_sequence|91|SoSpotLightManip.3iv|778|\f8getClassTypeId\*(Cr() |\*(CbgetClassTypeId\*(Cr()
) (rof_escape_sequence|91|SoSpotLightManip.3iv|785|\f8SoGLRenderAction, SoCallbackAction, SoGetBoundingBoxAction, SoGetMatrixAction, SoHandleEventAction, SoRayPickAction |\*(CbSoGLRenderAction, SoCallbackAction, SoGetBoundingBoxAction, SoGetMatrixAction, SoHandleEventAction, SoRayPickAction
) (rof_escape_sequence|91|SoSpotLightManip.3iv|788|\f8SoGroup\f1 would. All draggers place themselves in space, but leave the current transformation unchanged when finished. Then the \*(CbSoSpotLightManip\f1 adds a spotlight to the state, just like |\f1First, traverses the dragger the way an \*(CbSoGroup\f1 would. All draggers place themselves in space, but leave the current transformation unchanged when finished. Then the \*(CbSoSpotLightManip\f1 adds a spotlight to the state, just like
) (rof_escape_sequence|91|SoSpotLightManip.3iv|789|\f8SoSpotLight\f1. |\&its base class, \*(CbSoSpotLight\f1.
) (rof_escape_sequence|91|SoSpotLightManip.3iv|792|\f8SoSearchAction |\*(CbSoSearchAction
) (rof_escape_sequence|91|SoSpotLightManip.3iv|795|\f8SoSpotLight\f1. Does not search the dragger, which is a hidden child. |\f1Searches just like an \*(CbSoSpotLight\f1. Does not search the dragger, which is a hidden child.
) (rof_escape_sequence|91|SoSpotLightManip.3iv|798|\f8SoWriteAction |\*(CbSoWriteAction
) (rof_escape_sequence|91|SoSpotLightManip.3iv|801|\f8SoSpotLight\f1. Does not write the dragger, which is a hidden child. If you really need to write valuable information about the dragger, such as customized geometry, you can retrieve the dragger |\f1Writes out just like an \*(CbSoSpotLight\f1. Does not write the dragger, which is a hidden child. If you really need to write valuable information about the dragger, such as customized geometry, you can retrieve the dragger
) (rof_escape_sequence|91|SoSpotLightManip.3iv|802|\f8getDragger()\f1 method and then write it out separately. |\&with the \*(CbgetDragger()\f1 method and then write it out separately.
) (rof_escape_sequence|91|SoSpotLightManip.3iv|807|\f7SpotLightManip {|\*(CrSpotLightManip {
) (rof_escape_sequence|91|SoSpotLightManip.3iv|820|\f8SoDragger, SoSpotLight, SoSpotLightDragger, SoDirectionalLightManip, SoPointLightManip |\*(CbSoDragger, SoSpotLight, SoSpotLightDragger, SoDirectionalLightManip, SoPointLightManip
)