jakke-graphics-ts
    Preparing search index...

    Type Alias Line2d

    Represents a 2D line segment defined by two vertices.

    type Line2d = {
        p0: Vertex2d;
        p1: Vertex2d;
    }
    Index

    Properties

    Properties

    The starting vertex of the line segment.

    The ending vertex of the line segment.