Class PerpendicularLineFromPoint

A line perpendicular to a given line, passing through a given point.

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

  • get a(): number
  • The a coefficient of the line equation in the form of ax + by + c = 0.

    Returns number

  • get b(): number
  • The b coefficient of the line equation in the form of ax + by + c = 0.

    Returns number

  • get c(): number
  • The c coefficient of the line equation in the form of ax + by + c = 0.

    Returns number

Methods

Generated using TypeDoc