MaxstARSDK  3.5.0
Point3Df.cs
1 /*==============================================================================
2 Copyright 2017 Maxst, Inc. All Rights Reserved.
3 ==============================================================================*/
4 
5 using System;
6 using System.Collections.Generic;
7 using System.Linq;
8 using System.Text;
9 
10 namespace maxstAR
11 {
12  internal class Point3Df
13  {
14  public float x = 0.0f;
15  public float y = 0.0f;
16  public float z = 0.0f;
17  }
18 }