Skip to content

Commit

Permalink
adds rhino doc name and layer full path props (#22)
Browse files Browse the repository at this point in the history
* adds rhino doc name and layer full path props

* formatting?
  • Loading branch information
didimitrie authored Jun 25, 2024
1 parent ce34dc6 commit 1f53d60
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Rhino/Speckle.Rhino.Interfaces/RhinoCurve.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ namespace Speckle.Rhino7.Interfaces;
public interface IRhinoDoc
{
double ModelAbsoluteTolerance { get; }
string Name { get; }
RhinoUnitSystem ModelUnitSystem { get; }

IRhinoViewTable Views { get; }
IRhinoLayerTable Layers { get; }
IRhinoObjectTable Objects { get; }
Expand Down Expand Up @@ -51,6 +51,7 @@ public interface IRhinoLayer : IRhinoModelComponent
{
IRhinoLayer[]? GetChildren();
int Index { get; }
string FullPath { get; }
Guid Id { get; }
}

Expand Down

0 comments on commit 1f53d60

Please sign in to comment.