Interface Plane

Main GeometryJS object. Represents a 2D plane.

Hierarchy

Implemented by

Properties

deepDependants: Iterable<Interfaces.DependencyNode>

All the nodes that depend on this node, and all the nodes that those nodes depend on, and so on. Uses a depth-first search.

deepDependencies: Iterable<Interfaces.DependencyNode>

All the nodes that this node depends on, and all the nodes that depend on those nodes, and so on. Uses a depth-first search.

dependants: Iterable<Interfaces.DependencyNode>

All the nodes that depend on this node.

dependencies: Iterable<Interfaces.DependencyNode>

All the nodes that this node depends on.

objectType: "plane"

This object is of type plane.

virtual: false

Whether this object is virtual.

Methods

  • Whether this object is equal to another object.
    If the objects are of a different type, this method should return false.
    If the objects are of the same type, this method should return true if the objects are equal, and false if they are not.

    Parameters

    Returns boolean

Object construction

Object creation

Object linking

  • Unlinks an object from this plane.
    This does not remove the object from the dependency tree, it just removes the object from the plane list of objects.

    Parameters

    Returns void

Generated using TypeDoc