程序包 org.openni

类 Point2D<T>


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

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

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

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

      • Point2D

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

      • getX

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

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