SoSceneKit(3IV) - Online Linux Manual Page
NAMESoSceneKit — scene nodekit class

INHERITS FROMSoBase > SoFieldContainer > SoNode > SoBaseKit > SoSceneKit

SYNOPSIS¶\f7#include <Inventor/nodekits/SoSceneKit.h> Parts from class SoSceneKit: \f8cameraList\*(Cr
\f8lightList\*(Cr
\f8childList\*(Cr Parts from class SoBaseKit: \f8callbackList\*(Cr Methods from class SoSceneKit: \f8SoSceneKit\*(Cr()
\f8getClassNodekitCatalog\*(Cr() const
\f8getCameraNumber\*(Cr()
\f8setCameraNumber\*(Cr(int camNum)
\f8getClassTypeId\*(Cr() Methods from class SoBaseKit: \f8getNodekitCatalog\*(Cr() const
\f8getPart\*(Cr(const SbName &partName, SbBool makeIfNeeded)
\f8getPartString\*(Cr(const SoBase *part)
\f8createPathToPart\*(Cr(const SbName &partName, SbBool makeIfNeeded, const SoPath *pathToExtend = NULL)
\f8setPart\*(Cr(const SbName &partName, SoNode *newPart)
\f8set\*(Cr(char *partName, char *parameters)
\f8set\*(Cr(char *nameValuePairs)
\f8isSearchingChildren\*(Cr()
\f8setSearchingChildren\*(Cr(SbBool newVal) 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)
\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 Macros from class SoBaseKit: \f8SO_GET_PART\*(Cr(kit, partName, partClass)
\f8SO_CHECK_PART\*(Cr(kit, partName, partClass)

DESCRIPTIONThis nodekit is used to organize camera, (\f8SoCameraKit\f1), light, (\*(CbSoLightKit\f1), and object, (\*(CbSoShapeKit\f1, \*(CbSoSeparatorKit\f1, and \*(CbSoWrapperKit\f1) nodekits into a scene. A scene is composed of a list of cameras, a list of lights, and a list of children. There are three ​parts created by this nodekit: cameraList, lightList, and childList. The cameraList part is a list part of \f8SoCameraKit\f1 nodes. The list itself is an \*(CbSoNodeKitListPart\f1, and since only one camera can be active at a time, the \f2container\f1 of the \f2list part\f1 is an \*(CbSoSwitch\f1 node. Use \*(CbsetCameraNumber()\f1, and the scene kit will set ​the switch to make that camera active. The lightList part is a list of \f8SoLightKit\f1 nodes. The \f2lightList\f1 is used to illuminate the objects contained in the \f2childList\f1 part. The childList part contains a set of \f8SoSeparatorKit\f1 nodes. You can add any kind of \*(CbSoSeparatorKit\f1 to this ​list, including \f8SoShapeKit\f1 and \*(CbSoWrapperKit\f1. Since each \*(CbSoSeparatorKit\f1 in turn contains a \f2childList\f1, this part is used to describe a hierarchical scene. (See the reference page for \*(CbSoSeparatorKit\f1). All members of \f2childList\f1 are lit by the lights in \f2lightList\f1 and rendered by the ​active camera in cameraList.

PARTS\f8cameraList\*(Cr
This part is an \f8SoNodeKitListPart\f1 It has a \f2container\f1 that is an \*(CbSoSwitch\f1 node. The list may contain only \*(CbSoCameraKit\f1 nodekits. The active child of the \*(CbSoSwitch\f1 is the \f2active\f1 camera. This part is \*(CrNULL\f1 by default, but is automatically created whenever you add a ​camera, as with \f8setPart("cameraList[0]", myNewCamera) \f1. \f8lightList\*(Cr
This part is an \f8SoNodeKitListPart\f1 that uses an defines an \*(CbSoGroup\f1 as its \f2container\f1 The list may contain only \*(CbSoLightKit\f1 nodekits. Add \*(CbSoLightKits\f1 to this list and they will light the members of the \f2childList\f1 of this \*(CbSoSceneKit\f1. This part is \*(CrNULL\f1 by default, but is automatically ​created when you add a light. \f8childList\*(Cr
This part is an \f8SoNodeKitListPart\f1 that uses an \*(CbSoGroup\f1 for its \f2container\f1. The list may contain only \*(CbSoSeparatorKit\f1 nodekits or nodekits derived from \*(CbSoSeparatorKit\f1 (e.g., \*(CbSoShapeKit\f1 and \*(CbSoWrapperKit\f1). These children represent the objects in the scene. This part is \*(CrNULL\f1 by default, but ​is automatically created whenever you add a child to the childList. Also, when asked to build a member of the childList, the scenekit will build an \f8SoShapeKit\f1 by default. So if the \f2childList\f1 part is NULL, and you call: \*(CbgetPart("childList[0]", TRUE) \f1. the scene ​kit will create the childList and add an \f8SoShapeKit\f1 as the new element in the list.

METHODS\f8SoSceneKit\*(Cr()
Constructor. \f8getClassNodekitCatalog\*(Cr() const
Returns an \f8SoNodekitCatalog\f1 for the class \*(CbSoSceneKit\f1. \f8getCameraNumber\*(Cr()
\f8setCameraNumber\*(Cr(int camNum)
Gets and sets current camera index. This index refers to which child is active in the cameraList part (\f8SoSwitch\f1 node). \f8getClassTypeId\*(Cr()
Returns type identifier for this class.

CATALOG PARTSAll parts NULL by Part NamePart TypeDefault TypeDefault callbackListNodeKitListPart--yes cameraListNodeKitListPart--yes lightListNodeKitListPart--yes childListNodeKitListPart--yes Extra information for list parts from above table Part NameContainer TypePermissible Types callbackListSeparator Callback, EventCallback cameraListSwitch CameraKit lightListGroup LightKit childListGroup ShapeKit, SeparatorKit

FILE FORMAT/DEFAULTS\f7SceneKit { callbackList NULL cameraList NodeKitListPart { containerTypeName "Switch" childTypeNames "CameraKit" containerNode Switch { whichChild 0 CameraKit { camera PerspectiveCamera { } } } } lightList NULL childList NULL }

SEE ALSO \f8SoAppearanceKit, SoBaseKit, SoCameraKit, SoLightKit, SoNodeKit, SoNodeKitDetail, SoNodeKitListPart, SoNodeKitPath, SoNodekitCatalog, SoSeparatorKit, SoShapeKit, SoWrapperKit
0
Johanes Gumabo
Data Size   :   30,472 byte
man-SoSceneKit.3ivBuild   :   2024-12-05, 20:55   :  
Visitor Screen   :   x
Visitor Counter ( page / site )   :   3 / 201,287
Visitor ID   :     :  
Visitor IP   :   18.224.73.150   :  
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|SoSceneKit.3iv|7/8|\f7 |. ds Cr \f7 )         (rof_escape_sequence|91|SoSceneKit.3iv|9|\f8 |. ds Cb \f8 )         (rof_escape_sequence|91|SoSceneKit.3iv|18|\f7#include |¶\*(Cr#include )         (rof_escape_sequence|91|SoSceneKit.3iv|28|\f7(SoNodeKitListPart) |.ds Pt \*(Cr(SoNodeKitListPart) )         (parse_manual_page_|249|SoSceneKit.3iv|35/36|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|35/36|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|37/38|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|37/38|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|39|\f8cameraList\*(Cr |\*(CbcameraList\*(Cr )         (rof_escape_sequence|91|SoSceneKit.3iv|44|\f7(SoNodeKitListPart) |.ds Pt \*(Cr(SoNodeKitListPart) )         (parse_manual_page_|249|SoSceneKit.3iv|51/52|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|51/52|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|53/54|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|53/54|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|55|\f8lightList\*(Cr |\*(CblightList\*(Cr )         (rof_escape_sequence|91|SoSceneKit.3iv|60|\f7(SoNodeKitListPart) |.ds Pt \*(Cr(SoNodeKitListPart) )         (parse_manual_page_|249|SoSceneKit.3iv|67/68|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|67/68|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|69/70|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|69/70|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|71|\f8childList\*(Cr |\*(CbchildList\*(Cr )         (rof_escape_sequence|91|SoSceneKit.3iv|81|\f7(SoNodeKitListPart) |.ds Pt \*(Cr(SoNodeKitListPart) )         (parse_manual_page_|249|SoSceneKit.3iv|88/89|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|88/89|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|90/91|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|90/91|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|92|\f8callbackList\*(Cr |\*(CbcallbackList\*(Cr )         (rof_escape_sequence|91|SoSceneKit.3iv|102|\f7 |.ds Pt \*(Cr )         (parse_manual_page_|249|SoSceneKit.3iv|109/110|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|109/110|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|111/112|\f7 \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|111/112|\f7 \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|113|\f8SoSceneKit\*(Cr() |\*(CbSoSceneKit\*(Cr() )         (rof_escape_sequence|91|SoSceneKit.3iv|118|\f7static const SoNodekitCatalog * |.ds Pt \*(Crstatic const SoNodekitCatalog * )         (parse_manual_page_|249|SoSceneKit.3iv|125/126|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|125/126|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|127/128|\f7static const SoNodekitCatalog * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|127/128|\f7static const SoNodekitCatalog * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|129|\f8getClassNodekitCatalog\*(Cr() const |\*(CbgetClassNodekitCatalog\*(Cr() const )         (rof_escape_sequence|91|SoSceneKit.3iv|134|\f7int |.ds Pt \*(Crint )         (parse_manual_page_|249|SoSceneKit.3iv|141/142|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|141/142|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|143/144|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|143/144|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|145|\f8getCameraNumber\*(Cr() |\*(CbgetCameraNumber\*(Cr() )         (rof_escape_sequence|91|SoSceneKit.3iv|150|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoSceneKit.3iv|157/158|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|157/158|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|159/160|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|159/160|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|161|\f8setCameraNumber\*(Cr(int camNum) |\*(CbsetCameraNumber\*(Cr(int camNum) )         (rof_escape_sequence|91|SoSceneKit.3iv|166|\f7static SoType |.ds Pt \*(Crstatic SoType )         (parse_manual_page_|249|SoSceneKit.3iv|173/174|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|173/174|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|175/176|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|175/176|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|177|\f8getClassTypeId\*(Cr() |\*(CbgetClassTypeId\*(Cr() )         (rof_escape_sequence|91|SoSceneKit.3iv|187|\f7virtual const SoNodekitCatalog * |.ds Pt \*(Crvirtual const SoNodekitCatalog * )         (parse_manual_page_|249|SoSceneKit.3iv|194/195|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|194/195|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|196/197|\f7virtual const SoNodekitCatalog * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|196/197|\f7virtual const SoNodekitCatalog * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|198|\f8getNodekitCatalog\*(Cr() const |\*(CbgetNodekitCatalog\*(Cr() const )         (rof_escape_sequence|91|SoSceneKit.3iv|203|\f7virtual SoNode * |.ds Pt \*(Crvirtual SoNode * )         (parse_manual_page_|249|SoSceneKit.3iv|210/211|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|210/211|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|212/213|\f7virtual SoNode * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|212/213|\f7virtual SoNode * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|214|\f8getPart\*(Cr(const SbName &partName, SbBool makeIfNeeded) |\*(CbgetPart\*(Cr(const SbName &partName, SbBool makeIfNeeded) )         (rof_escape_sequence|91|SoSceneKit.3iv|219|\f7SbString |.ds Pt \*(CrSbString )         (parse_manual_page_|249|SoSceneKit.3iv|226/227|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|226/227|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|228/229|\f7SbString \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|228/229|\f7SbString \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|230|\f8getPartString\*(Cr(const SoBase *part) |\*(CbgetPartString\*(Cr(const SoBase *part) )         (rof_escape_sequence|91|SoSceneKit.3iv|235|\f7virtual SoNodeKitPath * |.ds Pt \*(Crvirtual SoNodeKitPath * )         (parse_manual_page_|249|SoSceneKit.3iv|242/243|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|242/243|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|244/245|\f7virtual SoNodeKitPath * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|244/245|\f7virtual SoNodeKitPath * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|246|\f8createPathToPart\*(Cr(const SbName &partName, SbBool makeIfNeeded, const SoPath *pathToExtend = NULL) |\*(CbcreatePathToPart\*(Cr(const SbName &partName, SbBool makeIfNeeded, const SoPath *pathToExtend = NULL) )         (rof_escape_sequence|91|SoSceneKit.3iv|251|\f7virtual SbBool |.ds Pt \*(Crvirtual SbBool )         (parse_manual_page_|249|SoSceneKit.3iv|258/259|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|258/259|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|260/261|\f7virtual SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|260/261|\f7virtual SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|262|\f8setPart\*(Cr(const SbName &partName, SoNode *newPart) |\*(CbsetPart\*(Cr(const SbName &partName, SoNode *newPart) )         (rof_escape_sequence|91|SoSceneKit.3iv|267|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoSceneKit.3iv|274/275|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|274/275|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|276/277|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|276/277|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|278|\f8set\*(Cr(char *partName, char *parameters) |\*(Cbset\*(Cr(char *partName, char *parameters) )         (rof_escape_sequence|91|SoSceneKit.3iv|283|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoSceneKit.3iv|290/291|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|290/291|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|292/293|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|292/293|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|294|\f8set\*(Cr(char *nameValuePairs) |\*(Cbset\*(Cr(char *nameValuePairs) )         (rof_escape_sequence|91|SoSceneKit.3iv|299|\f7static SbBool |.ds Pt \*(Crstatic SbBool )         (parse_manual_page_|249|SoSceneKit.3iv|306/307|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|306/307|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|308/309|\f7static SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|308/309|\f7static SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|310|\f8isSearchingChildren\*(Cr() |\*(CbisSearchingChildren\*(Cr() )         (rof_escape_sequence|91|SoSceneKit.3iv|315|\f7static void |.ds Pt \*(Crstatic void )         (parse_manual_page_|249|SoSceneKit.3iv|322/323|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|322/323|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|324/325|\f7static void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|324/325|\f7static void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|326|\f8setSearchingChildren\*(Cr(SbBool newVal) |\*(CbsetSearchingChildren\*(Cr(SbBool newVal) )         (rof_escape_sequence|91|SoSceneKit.3iv|336|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoSceneKit.3iv|343/344|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|343/344|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|345/346|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|345/346|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|347|\f8setOverride\*(Cr(SbBool state) |\*(CbsetOverride\*(Cr(SbBool state) )         (rof_escape_sequence|91|SoSceneKit.3iv|352|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoSceneKit.3iv|359/360|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|359/360|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|361/362|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|361/362|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|363|\f8isOverride\*(Cr() const |\*(CbisOverride\*(Cr() const )         (rof_escape_sequence|91|SoSceneKit.3iv|368|\f7SoNode * |.ds Pt \*(CrSoNode * )         (parse_manual_page_|249|SoSceneKit.3iv|375/376|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|375/376|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|377/378|\f7SoNode * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|377/378|\f7SoNode * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|379|\f8copy\*(Cr(SbBool copyConnections = FALSE) const |\*(Cbcopy\*(Cr(SbBool copyConnections = FALSE) const )         (rof_escape_sequence|91|SoSceneKit.3iv|384|\f7virtual SbBool |.ds Pt \*(Crvirtual SbBool )         (parse_manual_page_|249|SoSceneKit.3iv|391/392|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|391/392|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|393/394|\f7virtual SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|393/394|\f7virtual SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|395|\f8affectsState\*(Cr() const |\*(CbaffectsState\*(Cr() const )         (rof_escape_sequence|91|SoSceneKit.3iv|400|\f7static SoNode * |.ds Pt \*(Crstatic SoNode * )         (parse_manual_page_|249|SoSceneKit.3iv|407/408|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|407/408|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|409/410|\f7static SoNode * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|409/410|\f7static SoNode * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|411|\f8getByName\*(Cr(const SbName &name) |\*(CbgetByName\*(Cr(const SbName &name) )         (rof_escape_sequence|91|SoSceneKit.3iv|416|\f7static int |.ds Pt \*(Crstatic int )         (parse_manual_page_|249|SoSceneKit.3iv|423/424|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|423/424|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|425/426|\f7static int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|425/426|\f7static int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|427|\f8getByName\*(Cr(const SbName &name, SoNodeList &list) |\*(CbgetByName\*(Cr(const SbName &name, SoNodeList &list) )         (rof_escape_sequence|91|SoSceneKit.3iv|437|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoSceneKit.3iv|444/445|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|444/445|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|446/447|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|446/447|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|448|\f8setToDefaults\*(Cr() |\*(CbsetToDefaults\*(Cr() )         (rof_escape_sequence|91|SoSceneKit.3iv|453|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoSceneKit.3iv|460/461|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|460/461|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|462/463|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|462/463|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|464|\f8hasDefaultValues\*(Cr() const |\*(CbhasDefaultValues\*(Cr() const )         (rof_escape_sequence|91|SoSceneKit.3iv|469|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoSceneKit.3iv|476/477|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|476/477|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|478/479|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|478/479|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|480|\f8fieldsAreEqual\*(Cr(const SoFieldContainer *fc) const |\*(CbfieldsAreEqual\*(Cr(const SoFieldContainer *fc) const )         (rof_escape_sequence|91|SoSceneKit.3iv|485|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoSceneKit.3iv|492/493|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|492/493|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|494/495|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|494/495|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|496|\f8copyFieldValues\*(Cr(const SoFieldContainer *fc, SbBool copyConnections = FALSE) |\*(CbcopyFieldValues\*(Cr(const SoFieldContainer *fc, SbBool copyConnections = FALSE) )         (rof_escape_sequence|91|SoSceneKit.3iv|501|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoSceneKit.3iv|508/509|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|508/509|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|510/511|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|510/511|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|512|\f8get\*(Cr(SbString &fieldDataString) |\*(Cbget\*(Cr(SbString &fieldDataString) )         (rof_escape_sequence|91|SoSceneKit.3iv|517|\f7virtual int |.ds Pt \*(Crvirtual int )         (parse_manual_page_|249|SoSceneKit.3iv|524/525|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|524/525|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|526/527|\f7virtual int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|526/527|\f7virtual int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|528|\f8getFields\*(Cr(SoFieldList &resultList) const |\*(CbgetFields\*(Cr(SoFieldList &resultList) const )         (rof_escape_sequence|91|SoSceneKit.3iv|533|\f7virtual SoField * |.ds Pt \*(Crvirtual SoField * )         (parse_manual_page_|249|SoSceneKit.3iv|540/541|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|540/541|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|542/543|\f7virtual SoField * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|542/543|\f7virtual SoField * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|544|\f8getField\*(Cr(const SbName &fieldName) const |\*(CbgetField\*(Cr(const SbName &fieldName) const )         (rof_escape_sequence|91|SoSceneKit.3iv|549|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoSceneKit.3iv|556/557|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|556/557|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|558/559|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|558/559|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|560|\f8getFieldName\*(Cr(const SoField *field, SbName &fieldName) const |\*(CbgetFieldName\*(Cr(const SoField *field, SbName &fieldName) const )         (rof_escape_sequence|91|SoSceneKit.3iv|565|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoSceneKit.3iv|572/573|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|572/573|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|574/575|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|574/575|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|576|\f8isNotifyEnabled\*(Cr() const |\*(CbisNotifyEnabled\*(Cr() const )         (rof_escape_sequence|91|SoSceneKit.3iv|581|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoSceneKit.3iv|588/589|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|588/589|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|590/591|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|590/591|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|592|\f8enableNotify\*(Cr(SbBool flag) |\*(CbenableNotify\*(Cr(SbBool flag) )         (rof_escape_sequence|91|SoSceneKit.3iv|602|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoSceneKit.3iv|609/610|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|609/610|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|611/612|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|611/612|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|613|\f8ref\*(Cr() |\*(Cbref\*(Cr() )         (rof_escape_sequence|91|SoSceneKit.3iv|618|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoSceneKit.3iv|625/626|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|625/626|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|627/628|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|627/628|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|629|\f8unref\*(Cr() const |\*(Cbunref\*(Cr() const )         (rof_escape_sequence|91|SoSceneKit.3iv|634|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoSceneKit.3iv|641/642|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|641/642|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|643/644|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|643/644|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|645|\f8unrefNoDelete\*(Cr() const |\*(CbunrefNoDelete\*(Cr() const )         (rof_escape_sequence|91|SoSceneKit.3iv|650|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoSceneKit.3iv|657/658|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|657/658|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|659/660|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|659/660|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|661|\f8touch\*(Cr() |\*(Cbtouch\*(Cr() )         (rof_escape_sequence|91|SoSceneKit.3iv|666|\f7virtual SoType |.ds Pt \*(Crvirtual SoType )         (parse_manual_page_|249|SoSceneKit.3iv|673/674|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|673/674|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|675/676|\f7virtual SoType \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|675/676|\f7virtual SoType \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|677|\f8getTypeId\*(Cr() const |\*(CbgetTypeId\*(Cr() const )         (rof_escape_sequence|91|SoSceneKit.3iv|682|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoSceneKit.3iv|689/690|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|689/690|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|691/692|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|691/692|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|693|\f8isOfType\*(Cr(SoType type) const |\*(CbisOfType\*(Cr(SoType type) const )         (rof_escape_sequence|91|SoSceneKit.3iv|698|\f7virtual void |.ds Pt \*(Crvirtual void )         (parse_manual_page_|249|SoSceneKit.3iv|705/706|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|705/706|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|707/708|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|707/708|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|709|\f8setName\*(Cr(const SbName &name) |\*(CbsetName\*(Cr(const SbName &name) )         (rof_escape_sequence|91|SoSceneKit.3iv|714|\f7virtual SbName |.ds Pt \*(Crvirtual SbName )         (parse_manual_page_|249|SoSceneKit.3iv|721/722|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|721/722|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|723/724|\f7virtual SbName \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|723/724|\f7virtual SbName \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|725|\f8getName\*(Cr() const |\*(CbgetName\*(Cr() const )         (rof_escape_sequence|91|SoSceneKit.3iv|731|\f8SO_GET_PART\*(Cr(kit, partName, partClass) |\*(CbSO_GET_PART\*(Cr(kit, partName, partClass) )         (rof_escape_sequence|91|SoSceneKit.3iv|734|\f8SO_CHECK_PART\*(Cr(kit, partName, partClass) |\*(CbSO_CHECK_PART\*(Cr(kit, partName, partClass) )         (rof_escape_sequence|91|SoSceneKit.3iv|738|\f8SoCameraKit\f1), light, (\*(CbSoLightKit\f1), and object, (\*(CbSoShapeKit\f1, \*(CbSoSeparatorKit\f1, and \*(CbSoWrapperKit\f1) nodekits into a scene. A scene is composed of a list of cameras, a list of lights, and a list of children. There are three |This nodekit is used to organize camera, (\*(CbSoCameraKit\f1), light, (\*(CbSoLightKit\f1), and object, (\*(CbSoShapeKit\f1, \*(CbSoSeparatorKit\f1, and \*(CbSoWrapperKit\f1) nodekits into a scene. A scene is composed of a list of cameras, a list of lights, and a list of children. There are three )         (rof_escape_sequence|91|SoSceneKit.3iv|741|\f8SoCameraKit\f1 nodes. The list itself is an \*(CbSoNodeKitListPart\f1, and since only one camera can be active at a time, the \f2container\f1 of the \f2list part\f1 is an \*(CbSoSwitch\f1 node. Use \*(CbsetCameraNumber()\f1, and the scene kit will set |The \f2cameraList\f1 part is a \f2list part\f1 of \*(CbSoCameraKit\f1 nodes. The list itself is an \*(CbSoNodeKitListPart\f1, and since only one camera can be active at a time, the \f2container\f1 of the \f2list part\f1 is an \*(CbSoSwitch\f1 node. Use \*(CbsetCameraNumber()\f1, and the scene kit will set )         (rof_escape_sequence|91|SoSceneKit.3iv|744|\f8SoLightKit\f1 nodes. The \f2lightList\f1 is used to illuminate the objects contained in the \f2childList\f1 part. |The \f2lightList\f1 part is a list of \*(CbSoLightKit\f1 nodes. The \f2lightList\f1 is used to illuminate the objects contained in the \f2childList\f1 part. )         (rof_escape_sequence|91|SoSceneKit.3iv|746|\f8SoSeparatorKit\f1 nodes. You can add any kind of \*(CbSoSeparatorKit\f1 to this |The \f2childList\f1 part contains a set of \*(CbSoSeparatorKit\f1 nodes. You can add any kind of \*(CbSoSeparatorKit\f1 to this )         (rof_escape_sequence|91|SoSceneKit.3iv|747|\f8SoShapeKit\f1 and \*(CbSoWrapperKit\f1. Since each \*(CbSoSeparatorKit\f1 in turn contains a \f2childList\f1, this part is used to describe a hierarchical scene. (See the reference page for \*(CbSoSeparatorKit\f1). All members of \f2childList\f1 are lit by the lights in \f2lightList\f1 and rendered by the |\&list, including \*(CbSoShapeKit\f1 and \*(CbSoWrapperKit\f1. Since each \*(CbSoSeparatorKit\f1 in turn contains a \f2childList\f1, this part is used to describe a hierarchical scene. (See the reference page for \*(CbSoSeparatorKit\f1). All members of \f2childList\f1 are lit by the lights in \f2lightList\f1 and rendered by the )         (rof_escape_sequence|91|SoSceneKit.3iv|754|\f7(SoNodeKitListPart) |.ds Pt \*(Cr(SoNodeKitListPart) )         (parse_manual_page_|249|SoSceneKit.3iv|761/762|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|761/762|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|763/764|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|763/764|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|765|\f8cameraList\*(Cr |\*(CbcameraList\*(Cr )         (rof_escape_sequence|91|SoSceneKit.3iv|768|\f8SoNodeKitListPart\f1 It has a \f2container\f1 that is an \*(CbSoSwitch\f1 node. The list may contain only \*(CbSoCameraKit\f1 nodekits. The active child of the \*(CbSoSwitch\f1 is the \f2active\f1 camera. This part is \*(CrNULL\f1 by default, but is automatically created whenever you add a |\f1This part is an \*(CbSoNodeKitListPart\f1 It has a \f2container\f1 that is an \*(CbSoSwitch\f1 node. The list may contain only \*(CbSoCameraKit\f1 nodekits. The active child of the \*(CbSoSwitch\f1 is the \f2active\f1 camera. This part is \*(CrNULL\f1 by default, but is automatically created whenever you add a )         (rof_escape_sequence|91|SoSceneKit.3iv|769|\f8setPart("cameraList[0]", myNewCamera) \f1. |\&camera, as with \*(CbsetPart("cameraList[0]", myNewCamera) \f1. )         (rof_escape_sequence|91|SoSceneKit.3iv|775|\f7(SoNodeKitListPart) |.ds Pt \*(Cr(SoNodeKitListPart) )         (parse_manual_page_|249|SoSceneKit.3iv|782/783|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|782/783|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|784/785|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|784/785|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|786|\f8lightList\*(Cr |\*(CblightList\*(Cr )         (rof_escape_sequence|91|SoSceneKit.3iv|789|\f8SoNodeKitListPart\f1 that uses an defines an \*(CbSoGroup\f1 as its \f2container\f1 The list may contain only \*(CbSoLightKit\f1 nodekits. Add \*(CbSoLightKits\f1 to this list and they will light the members of the \f2childList\f1 of this \*(CbSoSceneKit\f1. This part is \*(CrNULL\f1 by default, but is automatically |\f1This part is an \*(CbSoNodeKitListPart\f1 that uses an defines an \*(CbSoGroup\f1 as its \f2container\f1 The list may contain only \*(CbSoLightKit\f1 nodekits. Add \*(CbSoLightKits\f1 to this list and they will light the members of the \f2childList\f1 of this \*(CbSoSceneKit\f1. This part is \*(CrNULL\f1 by default, but is automatically )         (rof_escape_sequence|91|SoSceneKit.3iv|796|\f7(SoNodeKitListPart) |.ds Pt \*(Cr(SoNodeKitListPart) )         (parse_manual_page_|249|SoSceneKit.3iv|803/804|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|803/804|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|805/806|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|805/806|\f7(SoNodeKitListPart) \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|807|\f8childList\*(Cr |\*(CbchildList\*(Cr )         (rof_escape_sequence|91|SoSceneKit.3iv|810|\f8SoNodeKitListPart\f1 that uses an \*(CbSoGroup\f1 for its \f2container\f1. The list may contain only \*(CbSoSeparatorKit\f1 nodekits or nodekits derived from \*(CbSoSeparatorKit\f1 (e.g., \*(CbSoShapeKit\f1 and \*(CbSoWrapperKit\f1). These children represent the objects in the scene. This part is \*(CrNULL\f1 by default, but |\f1This part is an \*(CbSoNodeKitListPart\f1 that uses an \*(CbSoGroup\f1 for its \f2container\f1. The list may contain only \*(CbSoSeparatorKit\f1 nodekits or nodekits derived from \*(CbSoSeparatorKit\f1 (e.g., \*(CbSoShapeKit\f1 and \*(CbSoWrapperKit\f1). These children represent the objects in the scene. This part is \*(CrNULL\f1 by default, but )         (rof_escape_sequence|91|SoSceneKit.3iv|811|\f8SoShapeKit\f1 by default. So if the \f2childList\f1 part is NULL, and you call: \*(CbgetPart("childList[0]", TRUE) \f1. the scene |\&is automatically created whenever you add a child to the \f2childList\f1. Also, when asked to build a member of the \f2childList\f1, the scenekit will build an \*(CbSoShapeKit\f1 by default. So if the \f2childList\f1 part is NULL, and you call: \*(CbgetPart("childList[0]", TRUE) \f1. the scene )         (rof_escape_sequence|91|SoSceneKit.3iv|812|\f8SoShapeKit\f1 as the new element in the list. |\&kit will create the \f2childList\f1 and add an \*(CbSoShapeKit\f1 as the new element in the list. )         (rof_escape_sequence|91|SoSceneKit.3iv|820|\f7 |.ds Pt \*(Cr )         (parse_manual_page_|249|SoSceneKit.3iv|827/828|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|827/828|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|829/830|\f7 \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|829/830|\f7 \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|831|\f8SoSceneKit\*(Cr() |\*(CbSoSceneKit\*(Cr() )         (rof_escape_sequence|91|SoSceneKit.3iv|840|\f7static const SoNodekitCatalog * |.ds Pt \*(Crstatic const SoNodekitCatalog * )         (parse_manual_page_|249|SoSceneKit.3iv|847/848|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|847/848|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|849/850|\f7static const SoNodekitCatalog * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|849/850|\f7static const SoNodekitCatalog * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|851|\f8getClassNodekitCatalog\*(Cr() const |\*(CbgetClassNodekitCatalog\*(Cr() const )         (rof_escape_sequence|91|SoSceneKit.3iv|854|\f8SoNodekitCatalog\f1 for the class \*(CbSoSceneKit\f1. |\f1Returns an \*(CbSoNodekitCatalog\f1 for the class \*(CbSoSceneKit\f1. )         (rof_escape_sequence|91|SoSceneKit.3iv|860|\f7int |.ds Pt \*(Crint )         (parse_manual_page_|249|SoSceneKit.3iv|867/868|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|867/868|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|869/870|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|869/870|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|871|\f8getCameraNumber\*(Cr() |\*(CbgetCameraNumber\*(Cr() )         (rof_escape_sequence|91|SoSceneKit.3iv|876|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoSceneKit.3iv|883/884|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|883/884|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|885/886|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|885/886|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|887|\f8setCameraNumber\*(Cr(int camNum) |\*(CbsetCameraNumber\*(Cr(int camNum) )         (rof_escape_sequence|91|SoSceneKit.3iv|890|\f8SoSwitch\f1 node). |\f1Gets and sets current camera index. This index refers to which child is active in the \f2cameraList\f1 part (\*(CbSoSwitch\f1 node). )         (rof_escape_sequence|91|SoSceneKit.3iv|896|\f7static SoType |.ds Pt \*(Crstatic SoType )         (parse_manual_page_|249|SoSceneKit.3iv|903/904|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoSceneKit.3iv|903/904|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoSceneKit.3iv|905/906|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoSceneKit.3iv|905/906|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoSceneKit.3iv|907|\f8getClassTypeId\*(Cr() |\*(CbgetClassTypeId\*(Cr() )         (rof_escape_sequence|91|SoSceneKit.3iv|957|\f7SceneKit {|\*(CrSceneKit { )         (rof_escape_sequence|91|SoSceneKit.3iv|975|\f8SoAppearanceKit, SoBaseKit, SoCameraKit, SoLightKit, SoNodeKit, SoNodeKitDetail, SoNodeKitListPart, SoNodeKitPath, SoNodekitCatalog, SoSeparatorKit, SoShapeKit, SoWrapperKit |\*(CbSoAppearanceKit, SoBaseKit, SoCameraKit, SoLightKit, SoNodeKit, SoNodeKitDetail, SoNodeKitListPart, SoNodeKitPath, SoNodekitCatalog, SoSeparatorKit, SoShapeKit, SoWrapperKit )