@newkrok/three-particles - v2.1.0
    Preparing search index...

    Type Alias Point3D

    Represents a point in 3D space with optional x, y, and z coordinates. Each coordinate is a number and is optional, allowing for partial definitions.

    // A point with all coordinates defined
    const point: Point3D = { x: 10, y: 20, z: 30 };
    // A point with only one coordinate defined
    const point: Point3D = { x: 10 };
    // Default values are undefined for all coordinates.
    const point: Point3D = {};
    type Point3D = {
        x?: number;
        y?: number;
        z?: number;
    }
    Index

    Properties

    Properties

    x?: number
    y?: number
    z?: number