Space Reference System Types

This page describes types specific to the Space Referential app.

This page discusses:

RFGGridFace

Inheritance Path

ObjectType
 Feature
  Visualizable
   GeometricFeature
    Body
     Wireframe
      Surface
       GSMGridFace
        RFGGridFace

Attributes

Name Type Comment
Distance LENGTH Absolute distance from the plane system origin.

Behavior: Read

Name String Name of the plane object.

Behavior: Read, Write

Offset LENGTH Delta distance from previous plane.

Behavior: Read, Write

ShortName String Short name of plane object.

Behavior: Read, Write

Type String Extension type of the plane.

Behavior: Read, Write

Example

let planes (List)
planes = gridSet.Children

let plane (RFGGridFace)
let i (Integer)

i = 1
for i while i <= planes.Size()
{
	plane = planes[i]
	if( plane.Type == "FireZoneFrame" )
	{
		plane = planes[i+1]
		plane.Offset = 3m
		plane.Name = "TestPlane"
		plane.ShortName = "T.P"
	}
}

gridSet.Update()

RFGProjectData

Inheritance Path

ObjectType
 Feature
  RFGProjectData

Attributes

Name Type Comment
Type String Extension type of the project data.

Behavior: Read, Write