程序包 org.openni

类 Point3D<T>


  • public class Point3D<T>
    extends java.lang.Object
    The Point3D object encapsulate 3 Dimension point
    • 构造器概要

      构造器 
      构造器 说明
      Point3D​(T x, T y, T z)
      The Point3D constructor
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      T getX()
      Return X coordinate
      T getY()
      Return Y coordinate
      T getZ()
      Return Z coordinate
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 构造器详细资料

      • Point3D

        public Point3D​(T x,
                       T y,
                       T z)
        The Point3D constructor
        参数:
        x - coordinate of the point
        y - coordinate of the point
        z - coordinate of the point
    • 方法详细资料

      • getX

        public T getX()
        Return X coordinate
        返回:
        X coordinate
      • getY

        public T getY()
        Return Y coordinate
        返回:
        Y coordinate
      • getZ

        public T getZ()
        Return Z coordinate
        返回:
        Z coordinate