添加项目文件。
This commit is contained in:
24
KGdev.BI3D.Revit.ExporterV2/GeometryRetrieverResult.cs
Normal file
24
KGdev.BI3D.Revit.ExporterV2/GeometryRetrieverResult.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using KGdev.BI3D.Revit.Common.Models;
|
||||
|
||||
namespace KGdev.BI3D.Revit.ExporterV2
|
||||
{
|
||||
internal class GeometryRetrieverResult
|
||||
{
|
||||
public List<Position> Positions { get; } = new List<Position>();
|
||||
|
||||
public List<int> Indices { get; } = new List<int>();
|
||||
|
||||
public List<RGBA> Colors { get; } = new List<RGBA>();
|
||||
|
||||
public List<uint> ColorIndices { get; } = new List<uint>();
|
||||
|
||||
public List<string> Ids { get; } = new List<string> { "" };
|
||||
|
||||
public Dictionary<string, LinkedElementIdPath> ExportedElementIdPathById { get; } =
|
||||
new Dictionary<string, LinkedElementIdPath>();
|
||||
|
||||
public List<uint> IdIndices { get; } = new List<uint>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user