mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-25 14:07:28 +00:00
20 lines
427 B
TypeScript
20 lines
427 B
TypeScript
/**
|
|
* Interface that describes SfM triangulated meshes.
|
|
*
|
|
* @interface MeshEnt
|
|
*/
|
|
export interface MeshEnt {
|
|
/**
|
|
* Flattened array of faces for the mesh. Each face consist
|
|
* three vertex indices.
|
|
*/
|
|
faces: number[];
|
|
|
|
/**
|
|
* Flattened array of vertices for the mesh. Each vertex
|
|
* consists of X, Y and Z coordinates in the camera
|
|
* reference frame.
|
|
*/
|
|
vertices: number[];
|
|
}
|