三維點幾何

Implements

Constructors

Properties

x y z

Constructors

  • 幾何三維點

    Returns Geo3DPoint

    Example

    let point = new Geo3DPoint(); // 預設建構子
    
  • 幾何三維點

    Parameters

    • x: number
    • y: number
    • z: number

    Returns Geo3DPoint

    Example

    let point = new Geo3DPoint(0, 0, 0); // 指定x,y,z建立Geo3DPoint
    
  • 幾何三維點

    Parameters

    Returns Geo3DPoint

    Example

    let point = new Geo3DPoint(); // 預設建構子
    let pointCopy = new Geo3DPoint(point); // 使用欲複製的Geo3DPoint建立Geo3DPoint
    let pointObj = new Geo3DPoint({x: 0, y: 0, z: 0}); // 使用帶有x, y, z的Object建立Geo3DPoint
  • 幾何三維點

    Parameters

    • array: [number, number, number]

    Returns Geo3DPoint

    Example

    let point = new Geo3DPoint([0, 0, 0]); // 使用大小為3的數字陣列指定x, y, z建立Geo3DPoint
    

Properties

x: number = 0

x座標

y: number = 0

y座標

z: number = 0

z座標

Generated using TypeDoc