On this page

Type Alias PointProjection

type PointProjection = {
    isOccluded: boolean;
    point: Point;
    signedDistanceFromCamera: number;
}
Index

Properties

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. If the point is simply beyond the edge of the screen, this should NOT be set to false.

point: Point

The projected point.

signedDistanceFromCamera: number

The original W component of the projection.

Was this helpful?
SDK JS
Reference
PointProjection