/
spruttechnology
/
cam-api-examples
Обзор
Документация
Войти
/
spruttechnology
/
cam-api-examples
Код
Запросы
3
Задачи
Пакеты
0
Релизы
1
Аналитика
v19/develop
Geometry/AddinImportObjNet/project/main/ObjModel.cs
27 строк
678 B
bond
New examples
08 июл 2025, 12:59
08 июл 2025, 12:59
b3eac80
Код
Авторство
О чём код?
namespace AddinImportObjNet; /// <summary> /// Information about a 3D model parsed from an .obj file /// </summary> public class ObjModel { /// <summary> /// List of vertices in the model /// </summary> public List<Vector3D> Vertices { get; } = []; /// <summary> /// List of normals in the model /// </summary> public List<Vector3D> Normals { get; } = []; /// <summary> /// List of texture coordinates in the model /// </summary> public List<TextureCoordinate> TextureCoordinates { get; } = []; /// <summary> /// List of faces in the model /// </summary> public List<Face> Faces { get; } = []; }