Point_3D.java
Go to the documentation of this file.
1 package com.intel.realsense.librealsense;
2 
3 public class Point_3D {
4  public float mX;
5  public float mY;
6  public float mZ;
7 
8  public Point_3D() {
9  mX = 0.f;
10  mY = 0.f;
11  mZ = 0.f;
12  }
13 
14  public Point_3D(float x, float y, float z) {
15  mX = x;
16  mY = y;
17  mZ = z;
18  }
19 }
GLint y
Point_3D(float x, float y, float z)
Definition: Point_3D.java:14
GLdouble GLdouble z
GLdouble x


librealsense2
Author(s): Sergey Dorodnicov , Doron Hirshberg , Mark Horn , Reagan Lopez , Itay Carpis
autogenerated on Mon May 3 2021 02:47:39