Packagesandy.core.data
Classpublic final class Plane

A plane in 3D space.

Used maily to represent the frustrum planes of the camera.



Public Properties
 PropertyDefined by
  a : Number
Plane
  b : Number
Plane
  c : Number
Plane
  d : Number
Plane
Public Methods
 MethodDefined by
  
Plane(p_nA:Number = 0, p_nB:Number = 0, p_nC:Number = 0, p_nd:Number = 0)
Creates a new Plane instance.
Plane
  
toString():String
Returns a string represntation of this plane.
Plane
Property detail
aproperty
public var a:Number
bproperty 
public var b:Number
cproperty 
public var c:Number
dproperty 
public var d:Number
Constructor detail
Plane()constructor
public function Plane(p_nA:Number = 0, p_nB:Number = 0, p_nC:Number = 0, p_nd:Number = 0)

Creates a new Plane instance.

Parameters
p_nA:Number (default = 0) — the first plane coordinate
 
p_nB:Number (default = 0) — the second plane coordinate
 
p_nC:Number (default = 0) — the third plane coordinate
 
p_nd:Number (default = 0) — the forth plane coordinate
Method detail
toString()method
public function toString():String

Returns a string represntation of this plane.

Returns
String — The string representing this plane.