gis-tools-ts - v0.6.0
    Preparing search index...

    Interface IntersectionOfSegments<D>

    An intersection of two segments u and t are where the intersection occurs

    interface IntersectionOfSegments<D extends MValue = Properties> {
        point: VectorPoint<D>;
        t: number;
        u: number;
    }

    Type Parameters

    • D extends MValue = Properties
    Index

    Properties

    Properties

    point: VectorPoint<D>

    the intersection point

    t: number

    where along the second segment the intersection occurs

    u: number

    where along the first segment the intersection occurs