MaxstARSDK  3.5.0
Map3D.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 Map3D
13  {
14  public int width = 0;
15  public int height = 0;
16  public int imageCount = 0;
17  public int vertexCount = 0;
18  public float[][] poseMatrices = null;
19  public Point3Df[] vertices = null;
20  }
21 }