Class TDisk2DNode

Unit

Declaration

type TDisk2DNode = class(TAbstractGeometryNode)

Description

Disc (filled circle) in 2D.

Hierarchy

Overview

Methods

Public function Proxy(var State: TX3DGraphTraverseState): TAbstractGeometryNode; override;
Public function SolidField: TSFBool; override;
Public procedure CreateNode; override;
Public class function ClassX3DType: String; override;

Properties

Public property FdInnerRadius: TSFFloat read FFdInnerRadius;
Public property InnerRadius: Single read GetInnerRadius write SetInnerRadius;
Public property FdOuterRadius: TSFFloat read FFdOuterRadius;
Public property OuterRadius: Single read GetOuterRadius write SetOuterRadius;
Public property FdSolid: TSFBool read FFdSolid;
Public property FdSlices: TSFInt32 read FFdSlices;
Public property Slices: Integer read GetSlices write SetSlices;

Description

Methods

Public function Proxy(var State: TX3DGraphTraverseState): TAbstractGeometryNode; override;
 
Public function SolidField: TSFBool; override;
 
Public procedure CreateNode; override;

Create node fields and events.

Public class function ClassX3DType: String; override;
 

Properties

Public property FdInnerRadius: TSFFloat read FFdInnerRadius;

Internal wrapper for property InnerRadius. This wrapper API may change, we advise to access simpler InnerRadius instead, if it is defined (TODO: for now, some field types do not have a simpler counterpart).

Public property InnerRadius: Single read GetInnerRadius write SetInnerRadius;
 
Public property FdOuterRadius: TSFFloat read FFdOuterRadius;

Internal wrapper for property OuterRadius. This wrapper API may change, we advise to access simpler OuterRadius instead, if it is defined (TODO: for now, some field types do not have a simpler counterpart).

Public property OuterRadius: Single read GetOuterRadius write SetOuterRadius;
 
Public property FdSolid: TSFBool read FFdSolid;

Internal wrapper for property Solid. This wrapper API may change, we advise to access simpler Solid instead, if it is defined (TODO: for now, some field types do not have a simpler counterpart).

Public property FdSlices: TSFInt32 read FFdSlices;

Internal wrapper for property Slices. This wrapper API may change, we advise to access simpler Slices instead, if it is defined (TODO: for now, some field types do not have a simpler counterpart).

Public property Slices: Integer read GetSlices write SetSlices;

How much to subdivide the circles (both inner and outer circles of the disk). Larger values result in a shape that looks smoother, but also mean that we need to render more triangles. The default value, 0 means to use the global DefaultTriangulationSlices parameter.


Generated by PasDoc 0.16.0.