Type alias PointProjection

PointProjection: {
    isOccluded: boolean;
    point: Point;
    signedDistanceFromCamera: number;
}

The result of projecting a point to the screen, with some additional information about the projection.

Type declaration

  • isOccluded: boolean

    For complex projections (such as globe), true if the point is occluded by the projection, such as by being on the backfacing side of the globe.

  • point: Point

    The projected point.

  • signedDistanceFromCamera: number

    The original W component of the projection.