Class TPointSetNode
Unit
Declaration
type TPointSetNode = class(TAbstractGeometryNode)
Description
Points.
Source: scene/x3d/x3dnodes_standard_rendering.inc (line 755).
Hierarchy
- TObject
- TPersistent
- TX3DFileItem
- TX3DNode
- TAbstractNode
- TAbstractGeometryNode
- TPointSetNode
Overview
Methods
| Protected | function DirectEnumerateActive(Func: TEnumerateChildrenFunction): Pointer; override; |
| Public | class function ForVRMLVersion(const Version: TX3DVersion): boolean; override; |
| Public | function TrianglesCount(State: TX3DGraphTraverseState; ProxyGeometry: TAbstractGeometryNode; ProxyState: TX3DGraphTraverseState): Cardinal; override; |
| Public | function Lit(State: TX3DGraphTraverseState): boolean; override; |
| Public | function InternalCoord(State: TX3DGraphTraverseState; out ACoord: TMFVec3f): boolean; override; |
| Public | function CoordField: TSFNode; override; |
| Public | function SkinWeightsJoints(out Weights: TVector4List; out Joints: TInt32List): Boolean; override; |
| Public | function ColorField: TSFNode; override; |
| Public | function InternalFogCoord: TMFFloat; override; |
| Public | function AttribField: TMFNode; override; |
| Public | procedure CreateNode; override; |
| Public | class function ClassX3DType: String; override; |
| Public | procedure SetAttrib(const Value: array of TAbstractVertexAttributeNode); |
| Public | procedure SetSkinWeights0(const Value: array of TVector4); overload; |
| Public | procedure SetSkinWeights0(const Value: TVector4List); overload; |
| Public | procedure SetSkinJoints0(const Value: array of Int32); overload; |
| Public | procedure SetSkinJoints0(const Value: TInt32List); overload; |
Properties
| Public | property FdAttrib: TMFNode read FFdAttrib; |
| Public | property FdColor: TSFNode read FFdColor; |
| Public | property Color: TAbstractColorNode read GetColor write SetColor; |
| Public | property FdCoord: TSFNode read FFdCoord; |
| Public | property Coord: TAbstractCoordinateNode read GetCoord write SetCoord; |
| Public | property FdFogCoord: TSFNode read FFdFogCoord; |
| Public | property FogCoord: TFogCoordinateNode read GetFogCoord write SetFogCoord; |
| Public | property FdSkinWeights0: TMFVec4f read FFdSkinWeights0; |
| Public | property FdSkinJoints0: TMFInt32 read FFdSkinJoints0; |
Description
Methods
| Protected | function DirectEnumerateActive(Func: TEnumerateChildrenFunction): Pointer; override; |
|
This item has no description. Showing description inherited from TX3DNode.DirectEnumerateActive. Enumerate all active child nodes of given node. "Active nodes" are the ones affecting current look or collisions, e.g. from Switch node only one child will be enumerated. See Traverse for more precise definition. "Direct" means that this enumerates only direct descendants, i.e. this is not recursive. See methods like Traverse or EnumerateNodes if you want recursive behavior. This can enumerate both VRML1Children nodes and nodes within TSFNode and TMFNode fields. Default implementation in this class enumerates all Children nodes of VRML 1.0. If you need to remove some children for VRML 1.0 (e.g. for Switch or LOD nodes) or add some children for VRML 2.0 you have to override this. You do not need to call inherited when overriding this — in fact, you should not, if you want to omit some nodes. Stops and returns immediately if Func returns non-nil for some child. Source: scene/x3d/x3dnodes_standard_rendering.inc (line 757). | |
| Public | class function ForVRMLVersion(const Version: TX3DVersion): boolean; override; |
|
This item has no description. Showing description inherited from TX3DNode.ForVRMLVersion. Some nodes are present only in specific VRML/X3D version. This functions decides it. For example some nodes can only work in VRML < 2.0, some others only in VRML >= 2.0. There are even some pairs of nodes: for example TConeNode_1 works with VRML < 2.0, TConeNode works with VRML >= 2.0. NodesManager will use this. Default implementation of this function returns always In practice I only use this function when various VRML/X3D versions specify the same node name but
Source: scene/x3d/x3dnodes_standard_rendering.inc (line 759). | |
| Public | function TrianglesCount(State: TX3DGraphTraverseState; ProxyGeometry: TAbstractGeometryNode; ProxyState: TX3DGraphTraverseState): Cardinal; override; |
|
This item has no description. Source: scene/x3d/x3dnodes_standard_rendering.inc (line 761). | |
| Public | function Lit(State: TX3DGraphTraverseState): boolean; override; |
|
This item has no description. Showing description inherited from TAbstractGeometryNode.Lit.
Is this object lit, disregarding the material. Default implementation in TAbstractGeometryNode says Source: scene/x3d/x3dnodes_standard_rendering.inc (line 763). | |
| Public | function InternalCoord(State: TX3DGraphTraverseState; out ACoord: TMFVec3f): boolean; override; |
|
This item has no description. Showing description inherited from TAbstractGeometryNode.InternalCoord.
Return node's list of coordinates. Returns In base TAbstractGeometryNode class this always returns Override this for descendants that have some kind of "coord" field, then this should return For VRML 1.0, coord may be taken from State, that's why we have to pass current traverse state here. Source: scene/x3d/x3dnodes_standard_rendering.inc (line 764). | |
| Public | function CoordField: TSFNode; override; |
|
This item has no description. Showing description inherited from TAbstractGeometryNode.CoordField.
Node's "coord" field where you can place TCoordinateNode, or This gives you more possibilities than the InternalCoord and InternalCoordinates methods (as you can assign texCoord using this). However, it doesn't work for old VRML 1.0 (since they have coordinate information, but no "coord" field). Source: scene/x3d/x3dnodes_standard_rendering.inc (line 766). | |
| Public | function SkinWeightsJoints(out Weights: TVector4List; out Joints: TInt32List): Boolean; override; |
|
This item has no description. Showing description inherited from TAbstractGeometryNode.SkinWeightsJoints. Weights and joints for the skinned animation. If skinned animation is possible on this node, returns
Read or modify them freely. Keep the counts correct:
If skinned animation is not possible on this node, returns Source: scene/x3d/x3dnodes_standard_rendering.inc (line 767). | |
| Public | function ColorField: TSFNode; override; |
|
This item has no description. Source: scene/x3d/x3dnodes_standard_rendering.inc (line 768). | |
| Public | function InternalFogCoord: TMFFloat; override; |
|
This item has no description. Source: scene/x3d/x3dnodes_standard_rendering.inc (line 769). | |
| Public | function AttribField: TMFNode; override; |
|
This item has no description. Source: scene/x3d/x3dnodes_standard_rendering.inc (line 770). | |
| Public | procedure CreateNode; override; |
|
Create node fields and events. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 37). | |
| Public | class function ClassX3DType: String; override; |
|
This item has no description. Showing description inherited from TX3DNode.ClassX3DType. Node type name in VRML/X3D, for this class. Normal VRML/X3D node classes should override this to return something non-empty, and then X3DType automatically will return the same value. Empty for classes that don't have a hardcoded VRML/X3D node name, like a special TX3DUnknownNode. Such special classes should override then X3DType to return actual non-empty name there. You usually should call X3DType. The only use of this method is that it works on classes (it's "class function"), without needing at actual instance. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 38). | |
| Public | procedure SetAttrib(const Value: array of TAbstractVertexAttributeNode); |
|
This item has no description. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 47). | |
| Public | procedure SetSkinWeights0(const Value: array of TVector4); overload; |
|
Weights for the skinned animation. See TAbstractComposedGeometryNode.SetSkinWeights0 for details. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 76). | |
| Public | procedure SetSkinWeights0(const Value: TVector4List); overload; |
|
Weights for the skinned animation. See TAbstractComposedGeometryNode.SetSkinWeights0 for details. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 78). | |
| Public | procedure SetSkinJoints0(const Value: array of Int32); overload; |
|
Joints for the skinned animation. See TAbstractComposedGeometryNode.SetSkinJoints0 for details. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 84). | |
| Public | procedure SetSkinJoints0(const Value: TInt32List); overload; |
|
Joints for the skinned animation. See TAbstractComposedGeometryNode.SetSkinJoints0 for details. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 86). | |
Properties
| Public | property FdAttrib: TMFNode read FFdAttrib; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 43). | |
| Public | property FdColor: TSFNode read FFdColor; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 52). | |
| Public | property Color: TAbstractColorNode read GetColor write SetColor; |
|
This item has no description. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 54). | |
| Public | property FdCoord: TSFNode read FFdCoord; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 58). | |
| Public | property Coord: TAbstractCoordinateNode read GetCoord write SetCoord; |
|
This item has no description. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 60). | |
| Public | property FdFogCoord: TSFNode read FFdFogCoord; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 65). | |
| Public | property FogCoord: TFogCoordinateNode read GetFogCoord write SetFogCoord; |
|
This item has no description. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 69). | |
| Public | property FdSkinWeights0: TMFVec4f read FFdSkinWeights0; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 74). | |
| Public | property FdSkinJoints0: TMFInt32 read FFdSkinJoints0; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_pointset.inc (line 82). | |
Generated by PasDoc 0.17.0.snapshot.