Class TContactNode
Unit
X3DNodes
Declaration
type TContactNode = class(TAbstractNode)
Description
No description available, ancestor TAbstractNode description follows
Base X3D node that can have some metadata.
Almost all X3D nodes inherit from this, with the only exception being the X3DMetadataObject (expressed only as an interface in Pascal, IAbstractMetadataNode). This means that you cannot have metadata inside a metadata.
Hierarchy
Overview
Methods
Properties
Description
Methods
 |
procedure CreateNode; override; |
|
 |
class function ClassX3DType: string; override; |
|
 |
class function URNMatching(const URN: string): boolean; override; |
|
 |
procedure SetAppliedParameters(const Value: array of string); |
|
Properties
 |
property FdAppliedParameters: TMFString read FFdAppliedParameters; |
|
 |
property FdBody1: TSFNode read FFdBody1; |
|
 |
property FdBody2: TSFNode read FFdBody2; |
|
 |
property FdBounce: TSFFloat read FFdBounce; |
|
 |
property FdContactNormal: TSFVec3f read FFdContactNormal; |
|
 |
property FdDepth: TSFFloat read FFdDepth; |
|
 |
property FdFrictionCoefficients: TSFVec2f read FFdFrictionCoefficients; |
|
 |
property FdFrictionDirection: TSFVec3f read FFdFrictionDirection; |
|
 |
property FdGeometry1: TSFNode read FFdGeometry1; |
|
 |
property FdGeometry2: TSFNode read FFdGeometry2; |
|
 |
property FdMinbounceSpeed: TSFFloat read FFdMinbounceSpeed; |
|
 |
property FdPosition: TSFVec3f read FFdPosition; |
|
 |
property FdSlipCoefficients: TSFVec2f read FFdSlipCoefficients; |
|
 |
property FdSoftnessConstantForceMix: TSFFloat read FFdSoftnessConstantForceMix; |
|
 |
property FdSoftnessErrorCorrection: TSFFloat read FFdSoftnessErrorCorrection; |
|
 |
property FdSurfaceSpeed: TSFVec2f read FFdSurfaceSpeed; |
|
 |
property Bounce: Single read GetBounce write SetBounce; |
|
 |
property ContactNormal: TVector3 read GetContactNormal write SetContactNormal; |
|
 |
property Depth: Single read GetDepth write SetDepth; |
|
 |
property FrictionCoefficients: TVector2 read GetFrictionCoefficients write SetFrictionCoefficients; |
|
 |
property FrictionDirection: TVector3 read GetFrictionDirection write SetFrictionDirection; |
|
 |
property MinbounceSpeed: Single read GetMinbounceSpeed write SetMinbounceSpeed; |
|
 |
property Position: TVector3 read GetPosition write SetPosition; |
|
 |
property SlipCoefficients: TVector2 read GetSlipCoefficients write SetSlipCoefficients; |
|
 |
property SoftnessConstantForceMix: Single read GetSoftnessConstantForceMix write SetSoftnessConstantForceMix; |
|
 |
property SoftnessErrorCorrection: Single read GetSoftnessErrorCorrection write SetSoftnessErrorCorrection; |
|
 |
property SurfaceSpeed: TVector2 read GetSurfaceSpeed write SetSurfaceSpeed; |
|
Generated by PasDoc 0.15.0.
|