Constructors
constructor
- new Plane(normal?, distance?): Plane
Parameters
Optional
normal: Vec3 = Vec3.UPOptional
distance: number = 0
Properties
Methods
clone
- clone(): Plane
A duplicate Plane.
copy
- copy(src): Plane
Self for chaining.
setFromPointNormal
- setFromPointNormal(point, normal): Plane
Self for chaining.
An infinite plane. Internally it's represented in a parametric equation form: ax + by + cz + distance = 0.