Class AbstractLineFromPointAndNormalVectorAbstract

Represents common behaviour of bound lines that are defined by a point and a normal vector.

Hierarchy

Constructors

Properties

cache: Interfaces.IterableCache<{
    a: number;
    b: number;
    c: number;
    directionalVector: Interfaces.Vector;
    nonExistantState: boolean;
    normalVector: Interfaces.Vector;
    point1: Interfaces.Point;
    point2: Interfaces.Point;
    xAxisAngle: number;
}, true>

Type declaration

objectType: "line" = "line"

This object's type, which is "line".

Returns the plane this object is on.

virtual: false = false

Whether this object is virtual.

Accessors

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

Generated using TypeDoc