jakke-graphics-ts
    Preparing search index...

    Type Alias Triangle

    Represents a triangle in 3D space, defined by three vertices.

    type Triangle = {
        p0: Vertex3d;
        p1: Vertex3d;
        p2: Vertex3d;
    }
    Index

    Properties

    Properties

    The first vertex of the triangle.

    The second vertex of the triangle.

    The third vertex of the triangle.