1 Commits

Author SHA1 Message Date
Adam Hathcock 62ed5cfb67 add Rhino8 fakes 2024-10-10 10:35:46 +01:00
890 changed files with 43467 additions and 0 deletions
+14
View File
@@ -41,6 +41,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Speckle.Revit2022.Fakes", "
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Speckle.Revit2022.Fakes.Generator", "Speckle.Revit2022.Fakes.Generator\Speckle.Revit2022.Fakes.Generator.csproj", "{D2BD6A79-F43C-4D2C-A6AF-BEA5E91A380F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Speckle.Rhino8.Fakes.Generator", "Speckle.Rhino8.Fakes.Generator\Speckle.Rhino8.Fakes.Generator.csproj", "{EDAB9556-9121-4EA7-81D9-56D18605322A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Speckle.Rhino8.Fakes", "Speckle.Rhino8.Fakes\Speckle.Rhino8.Fakes.csproj", "{B4586179-DE2E-40E2-AA36-0AB18B3D8517}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -83,6 +87,14 @@ Global
{D2BD6A79-F43C-4D2C-A6AF-BEA5E91A380F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D2BD6A79-F43C-4D2C-A6AF-BEA5E91A380F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D2BD6A79-F43C-4D2C-A6AF-BEA5E91A380F}.Release|Any CPU.Build.0 = Release|Any CPU
{EDAB9556-9121-4EA7-81D9-56D18605322A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EDAB9556-9121-4EA7-81D9-56D18605322A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EDAB9556-9121-4EA7-81D9-56D18605322A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EDAB9556-9121-4EA7-81D9-56D18605322A}.Release|Any CPU.Build.0 = Release|Any CPU
{B4586179-DE2E-40E2-AA36-0AB18B3D8517}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B4586179-DE2E-40E2-AA36-0AB18B3D8517}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B4586179-DE2E-40E2-AA36-0AB18B3D8517}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B4586179-DE2E-40E2-AA36-0AB18B3D8517}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{00F3BEC6-614D-4AEE-923A-0E2DF40FDE6B} = {42C36267-88A8-4F94-9E62-5D43A02D033C}
@@ -95,5 +107,7 @@ Global
{F97FB46C-223C-4818-8A5A-330E897F4FC0} = {3B0D8F6E-C701-446E-BAE3-B6FDF1812901}
{662B3B4B-5B46-4507-9A39-3320E82AD459} = {BD68BFA8-3EC7-4689-987E-6422A37CF3B0}
{D2BD6A79-F43C-4D2C-A6AF-BEA5E91A380F} = {3B0D8F6E-C701-446E-BAE3-B6FDF1812901}
{EDAB9556-9121-4EA7-81D9-56D18605322A} = {3B0D8F6E-C701-446E-BAE3-B6FDF1812901}
{B4586179-DE2E-40E2-AA36-0AB18B3D8517} = {F2F213A8-6D57-492F-BA11-C9F26057B1DA}
EndGlobalSection
EndGlobal
+51
View File
@@ -0,0 +1,51 @@
using System.Reflection;
using Speckle.Shared;
var asm = Assembly.GetEntryAssembly().NotNull();
Assembly GetAssembly(string name)
{
var path = Path.Combine("C:\\Users\\adam\\.nuget\\packages\\rhinocommon\\8.12.24282.7001\\lib\\net48", name);
return Assembly.ReflectionOnlyLoadFrom(path);
}
Generator generator =
new(
"Speckle.Rhino8.Fakes",
[GetAssembly("RhinoCommon.dll")],
[
"Rhino",
"Rhino.Geometry",
"Rhino.Collections",
"Rhino.Runtime",
"Rhino.DocObjects",
"Rhino.Commands",
"Rhino.Render",
"Rhino.Display",
"Rhino.Geometry.Collections",
"Rhino.FileIO",
],
[
new("HostUtils", [new("GetCustomComputeEndpoints")]),
new("LinearDimension", [new("AnnotationType")]),
new("InstanceDefinition", [new("ComponentType")]),
new("Polyline", [new("Duplicate"), new("System.ICloneable.Clone")]),
new("RadialDimension", [new("AnnotationType")]),
new("MaterialRefs", [new("CopyTo")]),
new("PersistentSettingsConverter", [new("TryParseStringDictionary"), new("ToString")]),
new(
"PersistentSettings",
[new("TryGetStringDictionary"), new("GetStringDictionary"), new("SetStringDictionary"), new("SetDefault")]
),
new("Dimension", [new("TextFormula")]),
new("CreatePreviewEventArgs", [new("Objects")]),
new("RunCommandDelegate", []),
new("ArchivableDictionary", []),
new("RenderMaterial", [new("HandleTexturedValue")]),
new("CustomRenderMeshProvider2", [new("BoundingBox")]),
new("Color4f", [new("GetObjectData")]),
new("Point3dList", [new("Duplicate"), new("System.ICloneable.Clone")]),
new("File3dmCommonComponentTable`1", [new("System.Collections.Generic.ICollection<T>.Add")]),
new("GripObject", [new("GetSurfaceCVIndices")]),
]
);
generator.Generate();
@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net48</TargetFramework>
</PropertyGroup>
<Import Project="..\Speckle.Shared\Speckle.Shared.projitems" Label="Shared" />
<ItemGroup>
<PackageReference Include="RhinoCommon" IncludeAssets="compile;build" VersionOverride="8.12.24282.7001" />
<PackageReference Include="RhinoWindows" IncludeAssets="compile;build" VersionOverride="8.12.24282.7001" />
</ItemGroup>
</Project>
@@ -0,0 +1,55 @@
{
"version": 2,
"dependencies": {
".NETFramework,Version=v4.8": {
"Microsoft.SourceLink.GitHub": {
"type": "Direct",
"requested": "[8.0.0, )",
"resolved": "8.0.0",
"contentHash": "G5q7OqtwIyGTkeIOAc3u2ZuV/kicQaec5EaRnc0pIeSnh9LUjj+PYQrJYBURvDt7twGl2PKA7nSN0kz1Zw5bnQ==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "8.0.0",
"Microsoft.SourceLink.Common": "8.0.0"
}
},
"MinVer": {
"type": "Direct",
"requested": "[6.0.0, )",
"resolved": "6.0.0",
"contentHash": "+/SsmiySsXJlvQLCGBqaZKNVt3s/Y/HbAdwtop7Km2CnuZbaScoqkWJEBQ5Cy9ebkn6kCYKrHsXgwrFdTgcb3g=="
},
"PolySharp": {
"type": "Direct",
"requested": "[1.14.1, )",
"resolved": "1.14.1",
"contentHash": "mOOmFYwad3MIOL14VCjj02LljyF1GNw1wP0YVlxtcPvqdxjGGMNdNJJxHptlry3MOd8b40Flm8RPOM8JOlN2sQ=="
},
"RhinoCommon": {
"type": "Direct",
"requested": "[8.12.24282.7001, )",
"resolved": "8.12.24282.7001",
"contentHash": "HdIcUKKrpJ/9crWMY2R4wNHPK355jhaEpjPbMFC9qD5QpuBUO5U8roi8OdHgE9/u2Fd1L//tAboSlOrQGPKcYA=="
},
"RhinoWindows": {
"type": "Direct",
"requested": "[8.12.24282.7001, )",
"resolved": "8.12.24282.7001",
"contentHash": "VxebZT9TIZrTG09RycmogLfnfPiX53oJZ40jIvlIoYtehBFZ5e3eESJCO4BvXTvmlAjU6KCDGxMEkus56lfT3w==",
"dependencies": {
"RhinoCommon": "[8.12.24282.7001]"
}
},
"Microsoft.Build.Tasks.Git": {
"type": "Transitive",
"resolved": "8.0.0",
"contentHash": "bZKfSIKJRXLTuSzLudMFte/8CempWjVamNUR5eHJizsy+iuOuO/k2gnh7W0dHJmYY0tBf+gUErfluCv5mySAOQ=="
},
"Microsoft.SourceLink.Common": {
"type": "Transitive",
"resolved": "8.0.0",
"contentHash": "dk9JPxTCIevS75HyEQ0E4OVAFhB2N+V9ShCXf8Q6FkUQZDkgLI12y679Nym1YqsiSysuQskT7Z+6nUf3yab6Vw=="
}
},
".NETFramework,Version=v4.8/win7-x86": {}
}
}
+15
View File
@@ -0,0 +1,15 @@
namespace Rhino;
public partial class IndexPair
{
int System.Collections.Generic.IList<System.Int32>.this[int x]
{
get => throw new System.NotImplementedException();
set { }
}
int System.Collections.Generic.IReadOnlyList<int>.this[int x]
{
get => throw new System.NotImplementedException();
}
}
+6
View File
@@ -0,0 +1,6 @@
namespace Rhino.DocObjects;
public partial class MaterialRefs
{
public void CopyTo(KeyValuePair<Guid, MaterialRef>[] array, int arrayIndex) => throw new NotImplementedException();
}
+10
View File
@@ -0,0 +1,10 @@
namespace Rhino.Collections;
public partial class RhinoList<T>
{
T System.Collections.Generic.IList<T>.this[int x]
{
get => throw new System.NotImplementedException();
set { }
}
}
+10
View File
@@ -0,0 +1,10 @@
namespace Rhino.FileIO;
public partial class SHA1OpenNURBS
{
protected override void HashCore(byte[] array, int ibStart, int cbSize) => throw new NotImplementedException();
protected override byte[] HashFinal() => throw new NotImplementedException();
public override void Initialize() => throw new NotImplementedException();
}
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>true</IsPackable>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" />
</ItemGroup>
</Project>
@@ -0,0 +1,13 @@
namespace Rhino;
public enum AngleUnitSystem
{
None,
Turns,
Radians,
Degrees,
Minutes,
Seconds,
Gradians,
Unset,
}
@@ -0,0 +1,9 @@
namespace Rhino;
public enum AntialiasLevel
{
None,
Draft,
Good,
High,
}
@@ -0,0 +1,23 @@
namespace Rhino;
public partial class BitmapExtensions
{
public BitmapExtensions() { }
public static System.Boolean IsNormalMap(
System.Drawing.Bitmap bitmap,
System.Boolean bLossyCompressionSource,
out System.Boolean bPositiveZComponent
) => throw new System.NotImplementedException();
public static System.Drawing.Bitmap ConvertToNormalMap(
System.Drawing.Bitmap bitmap,
System.Boolean bLossyCompressionSource,
out System.Boolean bPositiveZComponent
) => throw new System.NotImplementedException();
public static Rhino.FileIO.FileReference BitmapAsTextureFileReference(
System.Drawing.Bitmap bitmap,
System.UInt32 crc
) => throw new System.NotImplementedException();
}
@@ -0,0 +1,40 @@
namespace Rhino.Collections;
public partial class CurveList : Rhino.Collections.RhinoList<Rhino.Geometry.Curve>
{
public CurveList() { }
public CurveList(System.Int32 initialCapacity) => throw new System.NotImplementedException();
public CurveList(System.Collections.Generic.IEnumerable<Rhino.Geometry.Curve> collection) =>
throw new System.NotImplementedException();
public virtual void Add(Rhino.Geometry.Line line) => throw new System.NotImplementedException();
public virtual void Add(Rhino.Geometry.Circle circle) => throw new System.NotImplementedException();
public virtual void Add(Rhino.Geometry.Arc arc) => throw new System.NotImplementedException();
public virtual void Add(System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> polyline) =>
throw new System.NotImplementedException();
public virtual void Add(Rhino.Geometry.Ellipse ellipse) => throw new System.NotImplementedException();
public virtual void Insert(System.Int32 index, Rhino.Geometry.Line line) =>
throw new System.NotImplementedException();
public virtual void Insert(System.Int32 index, Rhino.Geometry.Circle circle) =>
throw new System.NotImplementedException();
public virtual void Insert(System.Int32 index, Rhino.Geometry.Arc arc) => throw new System.NotImplementedException();
public virtual void Insert(
System.Int32 index,
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> polyline
) => throw new System.NotImplementedException();
public virtual void Insert(System.Int32 index, Rhino.Geometry.Ellipse ellipse) =>
throw new System.NotImplementedException();
public virtual System.Boolean Transform(Rhino.Geometry.Transform xform) => throw new System.NotImplementedException();
}
@@ -0,0 +1,6 @@
namespace Rhino.Collections;
public partial interface IResizableList<T>
{
public System.Int32 Count { get; set; }
}
@@ -0,0 +1,7 @@
namespace Rhino.Collections;
public partial interface IRhinoTable<T>
{
public System.Int32 Count { get; }
public T this[System.Int32 index] { get; }
}
@@ -0,0 +1,15 @@
namespace Rhino.Collections;
public partial class Point3dList
{
public partial class XAccess
{
public XAccess() { }
public virtual System.Double this[System.Int32 index]
{
get => throw new System.NotImplementedException();
set { }
}
}
}
@@ -0,0 +1,15 @@
namespace Rhino.Collections;
public partial class Point3dList
{
public partial class YAccess
{
public YAccess() { }
public virtual System.Double this[System.Int32 index]
{
get => throw new System.NotImplementedException();
set { }
}
}
}
@@ -0,0 +1,15 @@
namespace Rhino.Collections;
public partial class Point3dList
{
public partial class ZAccess
{
public ZAccess() { }
public virtual System.Double this[System.Int32 index]
{
get => throw new System.NotImplementedException();
set { }
}
}
}
@@ -0,0 +1,59 @@
namespace Rhino.Collections;
public partial class Point3dList
: Rhino.Collections.RhinoList<Rhino.Geometry.Point3d>,
System.IEquatable<Rhino.Collections.Point3dList>
{
public Point3dList() { }
public Point3dList(System.Int32 initialCapacity) => throw new System.NotImplementedException();
public Point3dList(System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> collection) =>
throw new System.NotImplementedException();
public Point3dList(Rhino.Geometry.Point3d[] initialPoints) => throw new System.NotImplementedException();
public virtual System.Int32 ClosestIndex(Rhino.Geometry.Point3d testPoint) =>
throw new System.NotImplementedException();
public virtual void Add(System.Double x, System.Double y, System.Double z) =>
throw new System.NotImplementedException();
public virtual void Transform(Rhino.Geometry.Transform xform) => throw new System.NotImplementedException();
public virtual void SetAllX(System.Double xValue) => throw new System.NotImplementedException();
public virtual void SetAllY(System.Double yValue) => throw new System.NotImplementedException();
public virtual void SetAllZ(System.Double zValue) => throw new System.NotImplementedException();
public static System.Int32 ClosestIndexInList(
System.Collections.Generic.IList<Rhino.Geometry.Point3d> list,
Rhino.Geometry.Point3d testPoint
) => throw new System.NotImplementedException();
public static Rhino.Geometry.Point3d ClosestPointInList(
System.Collections.Generic.IList<Rhino.Geometry.Point3d> list,
Rhino.Geometry.Point3d testPoint
) => throw new System.NotImplementedException();
public virtual System.Boolean Equals(Rhino.Collections.Point3dList other) =>
throw new System.NotImplementedException();
public virtual Rhino.Geometry.BoundingBox BoundingBox
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.Collections.Point3dList.XAccess X
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.Collections.Point3dList.YAccess Y
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.Collections.Point3dList.ZAccess Z
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,36 @@
namespace Rhino.Collections;
public partial class RhinoList
{
public RhinoList() { }
public static System.Collections.Generic.IEnumerable<System.Int32[]> PointCloudKNeighbors(
Rhino.Geometry.PointCloud pointcloud,
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> needlePoints,
System.Int32 amount
) => throw new System.NotImplementedException();
public static System.Collections.Generic.IEnumerable<System.Int32[]> Point3dKNeighbors(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> hayPoints,
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> needlePoints,
System.Int32 amount
) => throw new System.NotImplementedException();
public static System.Collections.Generic.IEnumerable<System.Int32[]> Point3fKNeighbors(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3f> hayPoints,
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3f> needlePoints,
System.Int32 amount
) => throw new System.NotImplementedException();
public static System.Collections.Generic.IEnumerable<System.Int32[]> Point2dKNeighbors(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point2d> hayPoints,
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point2d> needlePoints,
System.Int32 amount
) => throw new System.NotImplementedException();
public static System.Collections.Generic.IEnumerable<System.Int32[]> Point2fKNeighbors(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point2f> hayPoints,
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point2f> needlePoints,
System.Int32 amount
) => throw new System.NotImplementedException();
}
@@ -0,0 +1,220 @@
namespace Rhino.Collections;
public partial class RhinoList<T>
: System.Collections.Generic.IList<T>,
System.Collections.Generic.ICollection<T>,
System.Collections.Generic.IEnumerable<T>,
System.Collections.IEnumerable,
System.Collections.IList,
System.Collections.ICollection,
System.ICloneable
{
public RhinoList() { }
public RhinoList(System.Int32 initialCapacity) => throw new System.NotImplementedException();
public RhinoList(System.Int32 amount, T defaultValue) => throw new System.NotImplementedException();
public RhinoList(System.Collections.Generic.IEnumerable<T> collection) => throw new System.NotImplementedException();
public RhinoList(Rhino.Collections.RhinoList<T> list) => throw new System.NotImplementedException();
public virtual T[] ToArray() => throw new System.NotImplementedException();
public virtual void TrimExcess() => throw new System.NotImplementedException();
public virtual System.Int32 RemapIndex(System.Int32 index) => throw new System.NotImplementedException();
public virtual void Clear() => throw new System.NotImplementedException();
public virtual void Add(T item) => throw new System.NotImplementedException();
public virtual void AddRange(System.Collections.Generic.IEnumerable<T> collection) =>
throw new System.NotImplementedException();
public virtual void AddRange(System.Collections.IEnumerable collection) => throw new System.NotImplementedException();
public virtual void Insert(System.Int32 index, T item) => throw new System.NotImplementedException();
public virtual void InsertRange(System.Int32 index, System.Collections.Generic.IEnumerable<T> collection) =>
throw new System.NotImplementedException();
public virtual System.Boolean Remove(T item) => throw new System.NotImplementedException();
public virtual System.Int32 RemoveAll(System.Predicate<T> match) => throw new System.NotImplementedException();
public virtual System.Int32 RemoveNulls() => throw new System.NotImplementedException();
public virtual void RemoveAt(System.Int32 index) => throw new System.NotImplementedException();
public virtual void RemoveRange(System.Int32 index, System.Int32 count) => throw new System.NotImplementedException();
public virtual Rhino.Collections.RhinoList<T> GetRange(System.Int32 index, System.Int32 count) =>
throw new System.NotImplementedException();
public virtual System.Int32 IndexOf(T item) => throw new System.NotImplementedException();
public virtual System.Int32 IndexOf(T item, System.Int32 index) => throw new System.NotImplementedException();
public virtual System.Int32 IndexOf(T item, System.Int32 index, System.Int32 count) =>
throw new System.NotImplementedException();
public virtual System.Int32 LastIndexOf(T item) => throw new System.NotImplementedException();
public virtual System.Int32 LastIndexOf(T item, System.Int32 index) => throw new System.NotImplementedException();
public virtual System.Int32 LastIndexOf(T item, System.Int32 index, System.Int32 count) =>
throw new System.NotImplementedException();
public virtual System.Int32 BinarySearch(T item) => throw new System.NotImplementedException();
public virtual System.Int32 BinarySearch(T item, System.Collections.Generic.IComparer<T> comparer) =>
throw new System.NotImplementedException();
public virtual System.Int32 BinarySearch(
System.Int32 index,
System.Int32 count,
T item,
System.Collections.Generic.IComparer<T> comparer
) => throw new System.NotImplementedException();
public virtual System.Boolean Contains(T item) => throw new System.NotImplementedException();
public virtual System.Boolean Exists(System.Predicate<T> match) => throw new System.NotImplementedException();
public virtual T Find(System.Predicate<T> match) => throw new System.NotImplementedException();
public virtual T FindLast(System.Predicate<T> match) => throw new System.NotImplementedException();
public virtual Rhino.Collections.RhinoList<T> FindAll(System.Predicate<T> match) =>
throw new System.NotImplementedException();
public virtual System.Boolean TrueForAll(System.Predicate<T> match) => throw new System.NotImplementedException();
public virtual void ForEach(System.Action<T> action) => throw new System.NotImplementedException();
public virtual System.Int32 FindIndex(System.Predicate<T> match) => throw new System.NotImplementedException();
public virtual System.Int32 FindIndex(System.Int32 startIndex, System.Predicate<T> match) =>
throw new System.NotImplementedException();
public virtual System.Int32 FindIndex(System.Int32 startIndex, System.Int32 count, System.Predicate<T> match) =>
throw new System.NotImplementedException();
public virtual System.Int32 FindLastIndex(System.Predicate<T> match) => throw new System.NotImplementedException();
public virtual System.Int32 FindLastIndex(System.Int32 startIndex, System.Predicate<T> match) =>
throw new System.NotImplementedException();
public virtual System.Int32 FindLastIndex(System.Int32 startIndex, System.Int32 count, System.Predicate<T> match) =>
throw new System.NotImplementedException();
public virtual void Sort() => throw new System.NotImplementedException();
public virtual void Sort(System.Collections.Generic.IComparer<T> comparer) =>
throw new System.NotImplementedException();
public virtual void Sort(System.Comparison<T> comparison) => throw new System.NotImplementedException();
public virtual void Sort(System.Int32 index, System.Int32 count, System.Collections.Generic.IComparer<T> comparer) =>
throw new System.NotImplementedException();
public virtual void Sort(System.Double[] keys) => throw new System.NotImplementedException();
public virtual void Sort(System.Int32[] keys) => throw new System.NotImplementedException();
public virtual void Reverse() => throw new System.NotImplementedException();
public virtual void Reverse(System.Int32 index, System.Int32 count) => throw new System.NotImplementedException();
public virtual System.Collections.ObjectModel.ReadOnlyCollection<T> AsReadOnly() =>
throw new System.NotImplementedException();
public virtual Rhino.Collections.RhinoList<TOutput> ConvertAll<TOutput>(System.Converter<T, TOutput> converter) =>
throw new System.NotImplementedException();
public virtual void CopyTo(T[] array) => throw new System.NotImplementedException();
public virtual void CopyTo(T[] array, System.Int32 arrayIndex) => throw new System.NotImplementedException();
public virtual void CopyTo(System.Int32 index, T[] array, System.Int32 arrayIndex, System.Int32 count) =>
throw new System.NotImplementedException();
public virtual Rhino.Collections.RhinoList<T> Duplicate() => throw new System.NotImplementedException();
public virtual System.Collections.Generic.IEnumerator<T> GetEnumerator() =>
throw new System.NotImplementedException();
System.Int32 System.Collections.IList.Add(System.Object item) => throw new System.NotImplementedException();
void System.Collections.IList.Insert(System.Int32 index, System.Object item) =>
throw new System.NotImplementedException();
void System.Collections.IList.Remove(System.Object item) => throw new System.NotImplementedException();
System.Int32 System.Collections.IList.IndexOf(System.Object item) => throw new System.NotImplementedException();
System.Boolean System.Collections.IList.Contains(System.Object item) => throw new System.NotImplementedException();
void System.Collections.ICollection.CopyTo(System.Array array, System.Int32 arrayIndex) =>
throw new System.NotImplementedException();
System.Object System.ICloneable.Clone() => throw new System.NotImplementedException();
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() =>
throw new System.NotImplementedException();
public virtual System.Int32 Capacity
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Int32 Count
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 NullCount
{
get => throw new System.NotImplementedException();
}
public virtual T this[System.Int32 index]
{
get => throw new System.NotImplementedException();
set { }
}
public virtual T First
{
get => throw new System.NotImplementedException();
set { }
}
public virtual T Last
{
get => throw new System.NotImplementedException();
set { }
}
System.Object System.Collections.IList.this[System.Int32 index]
{
get => throw new System.NotImplementedException();
set { }
}
System.Boolean System.Collections.IList.IsReadOnly
{
get => throw new System.NotImplementedException();
}
System.Boolean System.Collections.IList.IsFixedSize
{
get => throw new System.NotImplementedException();
}
System.Boolean System.Collections.Generic.ICollection<T>.IsReadOnly
{
get => throw new System.NotImplementedException();
}
System.Boolean System.Collections.ICollection.IsSynchronized
{
get => throw new System.NotImplementedException();
}
System.Object System.Collections.ICollection.SyncRoot
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,44 @@
namespace Rhino.Collections;
public partial class TransformObjectList : System.IDisposable
{
public TransformObjectList() { }
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual Rhino.Geometry.BoundingBox GetBoundingBox(System.Boolean regularObjects, System.Boolean grips) =>
throw new System.NotImplementedException();
public virtual System.Boolean UpdateDisplayFeedbackTransform(Rhino.Geometry.Transform xform) =>
throw new System.NotImplementedException();
public virtual void Clear() => throw new System.NotImplementedException();
public virtual void Add(Rhino.DocObjects.RhinoObject rhinoObject) => throw new System.NotImplementedException();
public virtual void Add(Rhino.DocObjects.ObjRef objref) => throw new System.NotImplementedException();
public virtual Rhino.DocObjects.RhinoObject[] ObjectArray() => throw new System.NotImplementedException();
public virtual Rhino.DocObjects.GripObject[] GripArray() => throw new System.NotImplementedException();
public virtual Rhino.DocObjects.RhinoObject[] GripOwnerArray() => throw new System.NotImplementedException();
public virtual System.Boolean DisplayFeedbackEnabled
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Int32 Count
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 GripCount
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 GripOwnerCount
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,55 @@
namespace Rhino.Commands;
public partial class Command
{
public Command() { }
public static System.Boolean IsValidCommandName(System.String name) => throw new System.NotImplementedException();
public static Rhino.Commands.MostRecentCommandDescription[] GetMostRecentCommands() =>
throw new System.NotImplementedException();
public static System.Guid[] GetCommandStack() => throw new System.NotImplementedException();
public static System.Boolean InCommand() => throw new System.NotImplementedException();
public static System.Boolean InScriptRunnerCommand() => throw new System.NotImplementedException();
public static System.Boolean IsCommand(System.String name) => throw new System.NotImplementedException();
public static System.Guid LookupCommandId(System.String name, System.Boolean searchForEnglishName) =>
throw new System.NotImplementedException();
public static System.String LookupCommandName(System.Guid commandId, System.Boolean englishName) =>
throw new System.NotImplementedException();
public static System.String[] GetCommandNames(System.Boolean english, System.Boolean loaded) =>
throw new System.NotImplementedException();
public static void DisplayHelp(System.Guid commandId) => throw new System.NotImplementedException();
public static System.Guid LastCommandId
{
get => throw new System.NotImplementedException();
}
public static Rhino.Commands.Result LastCommandResult
{
get => throw new System.NotImplementedException();
}
public virtual System.Guid Id
{
get => throw new System.NotImplementedException();
}
public virtual System.String EnglishName
{
get => throw new System.NotImplementedException();
}
public virtual System.String LocalName
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.PersistentSettings Settings
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,40 @@
namespace Rhino.Commands;
public partial class CommandEventArgs : System.EventArgs
{
public CommandEventArgs() { }
public virtual System.Guid CommandId
{
get => throw new System.NotImplementedException();
}
public virtual System.String CommandEnglishName
{
get => throw new System.NotImplementedException();
}
public virtual System.String CommandLocalName
{
get => throw new System.NotImplementedException();
}
public virtual System.String CommandHelpURL
{
get => throw new System.NotImplementedException();
}
public virtual System.String CommandPluginName
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.Commands.Result CommandResult
{
get => throw new System.NotImplementedException();
}
public virtual System.UInt32 DocumentRuntimeSerialNumber
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.RhinoDoc Document
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,13 @@
namespace Rhino.Commands;
public partial class CommandStyleAttribute : System.Attribute
{
public CommandStyleAttribute() { }
public CommandStyleAttribute(Rhino.Commands.Style styles) => throw new System.NotImplementedException();
public virtual Rhino.Commands.Style Styles
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,31 @@
namespace Rhino.Commands;
public partial class CustomUndoEventArgs : System.EventArgs
{
public CustomUndoEventArgs() { }
public virtual System.Guid CommandId
{
get => throw new System.NotImplementedException();
}
public virtual System.UInt32 UndoSerialNumber
{
get => throw new System.NotImplementedException();
}
public virtual System.String ActionDescription
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean CreatedByRedo
{
get => throw new System.NotImplementedException();
}
public virtual System.Object Tag
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.RhinoDoc Document
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,17 @@
namespace Rhino.Commands;
public partial class MostRecentCommandDescription
{
public MostRecentCommandDescription() { }
public virtual System.String DisplayString
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String Macro
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,12 @@
namespace Rhino.Commands;
public enum Result
{
Success,
Cancel,
Nothing,
Failure,
UnknownCommand,
CancelModelessDialog,
ExitRhino,
}
@@ -0,0 +1,7 @@
namespace Rhino.Commands;
public enum RunMode
{
Interactive,
Scripted,
}
@@ -0,0 +1,22 @@
namespace Rhino.Commands;
public partial class SelCommand : Rhino.Commands.Command
{
public SelCommand() { }
public virtual System.Boolean TestLights
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean TestGrips
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean BeQuiet
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,11 @@
namespace Rhino.Commands;
public enum Style
{
None,
Hidden,
ScriptRunner,
Transparent,
DoNotRepeat,
NotUndoable,
}
@@ -0,0 +1,6 @@
namespace Rhino.Commands;
public partial class TransformCommand : Rhino.Commands.Command
{
public TransformCommand() { }
}
@@ -0,0 +1,51 @@
namespace Rhino.Commands;
public partial class UndoRedoEventArgs : System.EventArgs
{
public UndoRedoEventArgs() { }
public virtual System.Guid CommandId
{
get => throw new System.NotImplementedException();
}
public virtual System.UInt32 UndoSerialNumber
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsBeforeBeginRecording
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsBeginRecording
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsBeforeEndRecording
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsEndRecording
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsBeginUndo
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsEndUndo
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsBeginRedo
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsEndRedo
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsPurgeRecord
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,9 @@
namespace Rhino.Display;
public enum BackgroundStyle
{
SolidColor,
WallpaperImage,
Gradient,
Environment,
}
@@ -0,0 +1,16 @@
namespace Rhino.Display;
public enum BlendMode
{
Zero,
One,
SourceColor,
OneMinusSourceColor,
SourceAlpha,
OneMinusSourceAlpha,
DestinationAlpha,
OneMinusDestinationAlpha,
DestinationColor,
OneMinusDestinationColor,
SourceAlphaSaturate,
}
@@ -0,0 +1,13 @@
namespace Rhino.Display;
public partial class CalculateBoundingBoxEventArgs : Rhino.Display.DrawEventArgs
{
public CalculateBoundingBoxEventArgs() { }
public virtual void IncludeBoundingBox(Rhino.Geometry.BoundingBox box) => throw new System.NotImplementedException();
public virtual Rhino.Geometry.BoundingBox BoundingBox
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,67 @@
namespace Rhino.Display;
public partial class Color4f : System.Runtime.Serialization.ISerializable
{
public Color4f() { }
public Color4f(System.Drawing.Color color) => throw new System.NotImplementedException();
public Color4f(Rhino.Display.Color4f color) => throw new System.NotImplementedException();
public Color4f(System.Single red, System.Single green, System.Single blue, System.Single alpha) =>
throw new System.NotImplementedException();
public Color4f(System.Int32 argb) => throw new System.NotImplementedException();
public static Rhino.Display.Color4f FromArgb(System.Single a, System.Single r, System.Single g, System.Single b) =>
throw new System.NotImplementedException();
public static Rhino.Display.Color4f FromArgb(System.Single a, Rhino.Display.Color4f color) =>
throw new System.NotImplementedException();
public virtual Rhino.Display.Color4f BlendTo(System.Single t, Rhino.Display.Color4f col) =>
throw new System.NotImplementedException();
public static Rhino.Display.Color4f ApplyGamma(Rhino.Display.Color4f col, System.Single gamma) =>
throw new System.NotImplementedException();
public virtual System.Drawing.Color AsSystemColor() => throw new System.NotImplementedException();
void System.Runtime.Serialization.ISerializable.GetObjectData(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context
) => throw new System.NotImplementedException();
public static Rhino.Display.Color4f Empty
{
get => throw new System.NotImplementedException();
}
public static Rhino.Display.Color4f Black
{
get => throw new System.NotImplementedException();
}
public static Rhino.Display.Color4f White
{
get => throw new System.NotImplementedException();
}
public virtual System.Single R
{
get => throw new System.NotImplementedException();
}
public virtual System.Single G
{
get => throw new System.NotImplementedException();
}
public virtual System.Single B
{
get => throw new System.NotImplementedException();
}
public virtual System.Single A
{
get => throw new System.NotImplementedException();
}
public virtual System.Single L
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,66 @@
namespace Rhino.Display;
public partial class ColorCMYK
{
public ColorCMYK() { }
public ColorCMYK(System.Drawing.Color rgb) => throw new System.NotImplementedException();
public ColorCMYK(System.Double cyan, System.Double magenta, System.Double yellow) =>
throw new System.NotImplementedException();
public ColorCMYK(System.Double cyan, System.Double magenta, System.Double yellow, System.Double key) =>
throw new System.NotImplementedException();
public ColorCMYK(
System.Double alpha,
System.Double cyan,
System.Double magenta,
System.Double yellow,
System.Double key
) => throw new System.NotImplementedException();
public static Rhino.Display.ColorCMYK CreateFromRGBA(Rhino.Display.ColorRGBA rgba) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorCMYK CreateFromHSL(Rhino.Display.ColorHSL hsl) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorCMYK CreateFromXYZ(Rhino.Display.ColorXYZ xyz) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorCMYK CreateFromLAB(Rhino.Display.ColorLAB lab) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorCMYK CreateFromLCH(Rhino.Display.ColorLCH lch) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorCMYK CreateFromHSV(Rhino.Display.ColorHSV hsv) =>
throw new System.NotImplementedException();
public virtual System.Double C
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double M
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double Y
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double K
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double A
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,34 @@
namespace Rhino.Display;
public partial class ColorGradient
{
public ColorGradient() { }
public virtual Rhino.Display.ColorGradient Duplicate() => throw new System.NotImplementedException();
public virtual Rhino.Display.ColorStop[] GetColorStops() => throw new System.NotImplementedException();
public virtual void SetColorStops(System.Collections.Generic.IEnumerable<Rhino.Display.ColorStop> stops) =>
throw new System.NotImplementedException();
public virtual Rhino.Display.GradientType GradientType
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double Repeat
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.Geometry.Point3d StartPoint
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.Geometry.Point3d EndPoint
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,55 @@
namespace Rhino.Display;
public partial class ColorHSL
{
public ColorHSL() { }
public ColorHSL(System.Drawing.Color rgb) => throw new System.NotImplementedException();
public ColorHSL(System.Double hue, System.Double saturation, System.Double luminance) =>
throw new System.NotImplementedException();
public ColorHSL(System.Double alpha, System.Double hue, System.Double saturation, System.Double luminance) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSL CreateFromRGBA(Rhino.Display.ColorRGBA rgba) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSL CreateFromCMYK(Rhino.Display.ColorCMYK cmyk) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSL CreateFromXYZ(Rhino.Display.ColorXYZ xyz) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSL CreateFromLAB(Rhino.Display.ColorLAB lab) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSL CreateFromLCH(Rhino.Display.ColorLCH lch) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSL CreateFromHSV(Rhino.Display.ColorHSV hsv) =>
throw new System.NotImplementedException();
public virtual System.Drawing.Color ToArgbColor() => throw new System.NotImplementedException();
public virtual System.Double H
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double S
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double L
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double A
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,55 @@
namespace Rhino.Display;
public partial class ColorHSV
{
public ColorHSV() { }
public ColorHSV(System.Drawing.Color rgb) => throw new System.NotImplementedException();
public ColorHSV(System.Double hue, System.Double saturation, System.Double value) =>
throw new System.NotImplementedException();
public ColorHSV(System.Double alpha, System.Double hue, System.Double saturation, System.Double value) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSV CreateFromRGBA(Rhino.Display.ColorRGBA rgba) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSV CreateFromHSL(Rhino.Display.ColorHSL hsl) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSV CreateFromCMYK(Rhino.Display.ColorCMYK cmyk) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSV CreateFromXYZ(Rhino.Display.ColorXYZ xyz) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSV CreateFromLAB(Rhino.Display.ColorLAB lab) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorHSV CreateFromLCH(Rhino.Display.ColorLCH lch) =>
throw new System.NotImplementedException();
public virtual System.Drawing.Color ToArgbColor() => throw new System.NotImplementedException();
public virtual System.Double H
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double S
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double V
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double A
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,53 @@
namespace Rhino.Display;
public partial class ColorLAB
{
public ColorLAB() { }
public ColorLAB(System.Drawing.Color rgb) => throw new System.NotImplementedException();
public ColorLAB(System.Double lightness, System.Double a, System.Double b) =>
throw new System.NotImplementedException();
public ColorLAB(System.Double alpha, System.Double lightness, System.Double a, System.Double b) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorLAB CreateFromRGBA(Rhino.Display.ColorRGBA rgb) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorLAB CreateFromHSL(Rhino.Display.ColorHSL hsl) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorLAB CreateFromCMYK(Rhino.Display.ColorCMYK cmyk) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorLAB CreateFromXYZ(Rhino.Display.ColorXYZ xyz) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorLAB CreateFromLCH(Rhino.Display.ColorLCH lch) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorLAB CreateFromHSV(Rhino.Display.ColorHSV hsv) =>
throw new System.NotImplementedException();
public virtual System.Double L
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double A
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double B
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double Alpha
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,52 @@
namespace Rhino.Display;
public partial class ColorLCH
{
public ColorLCH() { }
public ColorLCH(System.Drawing.Color rgb) => throw new System.NotImplementedException();
public ColorLCH(System.Double lightness, System.Double chroma, System.Double hue) =>
throw new System.NotImplementedException();
public ColorLCH(System.Double alpha, System.Double lightness, System.Double chroma, System.Double hue) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorLCH CreateFromRGBA(Rhino.Display.ColorRGBA rgb) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorLCH CreateFromHSL(Rhino.Display.ColorHSL hsl) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorLCH CreateFromCMYK(Rhino.Display.ColorCMYK cmyk) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorLCH CreateFromXYZ(Rhino.Display.ColorXYZ xyz) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorLCH CreateFromLAB(Rhino.Display.ColorLAB lab) =>
throw new System.NotImplementedException();
public virtual void MakePositive() => throw new System.NotImplementedException();
public virtual System.Double L
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double C
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double H
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double A
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,120 @@
namespace Rhino.Display;
public partial class ColorRGBA
: System.Runtime.Serialization.ISerializable,
System.IFormattable,
System.IComparable,
System.IComparable<Rhino.Display.ColorRGBA>,
System.IEquatable<Rhino.Display.ColorRGBA>,
Rhino.IEpsilonComparable<Rhino.Display.ColorRGBA>
{
public ColorRGBA() { }
public ColorRGBA(Rhino.Display.ColorRGBA color) => throw new System.NotImplementedException();
public ColorRGBA(Rhino.Display.ColorRGBA color, System.Double alpha) => throw new System.NotImplementedException();
public ColorRGBA(System.Double red, System.Double green, System.Double blue) =>
throw new System.NotImplementedException();
public ColorRGBA(System.Double red, System.Double green, System.Double blue, System.Double alpha) =>
throw new System.NotImplementedException();
public ColorRGBA(System.Drawing.Color color) => throw new System.NotImplementedException();
public ColorRGBA(System.Int32 argb) => throw new System.NotImplementedException();
public virtual System.Int32 ToArgb() => throw new System.NotImplementedException();
public static Rhino.Display.ColorRGBA CreateFromArgb(System.Byte red, System.Byte green, System.Byte blue) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorRGBA CreateFromArgb(
System.Byte alpha,
System.Byte red,
System.Byte green,
System.Byte blue
) => throw new System.NotImplementedException();
public static Rhino.Display.ColorRGBA CreateFromHSV(Rhino.Display.ColorHSV hsv) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorRGBA CreateFromHSL(Rhino.Display.ColorHSL hsl) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorRGBA CreateFromCMYK(Rhino.Display.ColorCMYK cmyk) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorRGBA CreateFromXYZ(Rhino.Display.ColorXYZ xyz) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorRGBA CreateFromLAB(Rhino.Display.ColorLAB lab) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorRGBA CreateFromLCH(Rhino.Display.ColorLCH lch) =>
throw new System.NotImplementedException();
public virtual System.String ToString(System.String format, System.IFormatProvider formatProvider) =>
throw new System.NotImplementedException();
public virtual System.Int32 CompareTo(Rhino.Display.ColorRGBA other) => throw new System.NotImplementedException();
public virtual System.Boolean EpsilonEquals(Rhino.Display.ColorRGBA other, System.Double epsilon) =>
throw new System.NotImplementedException();
public virtual System.Boolean Equals(Rhino.Display.ColorRGBA other) => throw new System.NotImplementedException();
public virtual Rhino.Display.ColorRGBA BlendTo(Rhino.Display.ColorRGBA col, System.Double coefficient) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorRGBA ApplyGamma(Rhino.Display.ColorRGBA col, System.Double gamma) =>
throw new System.NotImplementedException();
void System.Runtime.Serialization.ISerializable.GetObjectData(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context
) => throw new System.NotImplementedException();
System.Int32 System.IComparable.CompareTo(System.Object obj) => throw new System.NotImplementedException();
public virtual System.Double R
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double G
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double B
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double A
{
get => throw new System.NotImplementedException();
set { }
}
public static Rhino.Display.ColorRGBA Black
{
get => throw new System.NotImplementedException();
}
public static Rhino.Display.ColorRGBA White
{
get => throw new System.NotImplementedException();
}
public static Rhino.Display.ColorRGBA Red
{
get => throw new System.NotImplementedException();
}
public static Rhino.Display.ColorRGBA Green
{
get => throw new System.NotImplementedException();
}
public static Rhino.Display.ColorRGBA Blue
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,19 @@
namespace Rhino.Display;
public partial class ColorStop
{
public ColorStop() { }
public ColorStop(System.Drawing.Color color, System.Double t) => throw new System.NotImplementedException();
public virtual System.Drawing.Color Color
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double Position
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,52 @@
namespace Rhino.Display;
public partial class ColorXYZ
{
public ColorXYZ() { }
public ColorXYZ(System.Drawing.Color rgb) => throw new System.NotImplementedException();
public ColorXYZ(System.Double x, System.Double y, System.Double z) => throw new System.NotImplementedException();
public ColorXYZ(System.Double alpha, System.Double x, System.Double y, System.Double z) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorXYZ CreateFromRGBA(Rhino.Display.ColorRGBA rgba) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorXYZ CreateFromHSL(Rhino.Display.ColorHSL hsl) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorXYZ CreateFromCMYK(Rhino.Display.ColorCMYK cmyk) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorXYZ CreateFromLAB(Rhino.Display.ColorLAB lab) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorXYZ CreateFromLCH(Rhino.Display.ColorLCH lch) =>
throw new System.NotImplementedException();
public static Rhino.Display.ColorXYZ CreateFromHSV(Rhino.Display.ColorHSV hsv) =>
throw new System.NotImplementedException();
public virtual System.Double X
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double Y
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double Z
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double A
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,8 @@
namespace Rhino.Display;
public enum CullFaceMode
{
DrawFrontAndBack,
DrawFrontFaces,
DrawBackFaces,
}
@@ -0,0 +1,20 @@
namespace Rhino.Display;
public partial class CullObjectEventArgs : Rhino.Display.DrawEventArgs
{
public CullObjectEventArgs() { }
public virtual Rhino.DocObjects.RhinoObject RhinoObject
{
get => throw new System.NotImplementedException();
}
public virtual System.UInt32 RhinoObjectSerialNumber
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean CullObject
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,122 @@
namespace Rhino.Display;
public partial class CustomDisplay : System.IDisposable
{
public CustomDisplay() { }
public CustomDisplay(System.Boolean enable) => throw new System.NotImplementedException();
public virtual void Clear() => throw new System.NotImplementedException();
public virtual void AddPoint(Rhino.Geometry.Point3d point) => throw new System.NotImplementedException();
public virtual void AddPoint(Rhino.Geometry.Point3d point, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void AddPoint(
Rhino.Geometry.Point3d point,
System.Drawing.Color color,
Rhino.Display.PointStyle style,
System.Int32 radius
) => throw new System.NotImplementedException();
public virtual void AddPoints(System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points) =>
throw new System.NotImplementedException();
public virtual void AddPoints(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void AddPoints(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points,
System.Drawing.Color color,
Rhino.Display.PointStyle style,
System.Int32 radius
) => throw new System.NotImplementedException();
public virtual void AddLine(Rhino.Geometry.Line line) => throw new System.NotImplementedException();
public virtual void AddLine(Rhino.Geometry.Line line, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void AddLine(Rhino.Geometry.Line line, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void AddVector(Rhino.Geometry.Point3d anchor, Rhino.Geometry.Vector3d span) =>
throw new System.NotImplementedException();
public virtual void AddVector(
Rhino.Geometry.Point3d anchor,
Rhino.Geometry.Vector3d span,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void AddVector(
Rhino.Geometry.Point3d anchor,
Rhino.Geometry.Vector3d span,
System.Drawing.Color color,
System.Boolean drawAnchor
) => throw new System.NotImplementedException();
public virtual void AddArc(Rhino.Geometry.Arc arc) => throw new System.NotImplementedException();
public virtual void AddArc(Rhino.Geometry.Arc arc, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void AddArc(Rhino.Geometry.Arc arc, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void AddCircle(Rhino.Geometry.Circle circle) => throw new System.NotImplementedException();
public virtual void AddCircle(Rhino.Geometry.Circle circle, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void AddCircle(Rhino.Geometry.Circle circle, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void AddCurve(Rhino.Geometry.Curve curve) => throw new System.NotImplementedException();
public virtual void AddCurve(Rhino.Geometry.Curve curve, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void AddCurve(Rhino.Geometry.Curve curve, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void AddPolygon(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> polygon,
System.Drawing.Color fillColor,
System.Drawing.Color edgeColor,
System.Boolean drawFill,
System.Boolean drawEdge
) => throw new System.NotImplementedException();
public virtual void AddText(System.String text, Rhino.Geometry.Plane plane, System.Double size) =>
throw new System.NotImplementedException();
public virtual void AddText(
System.String text,
Rhino.Geometry.Plane plane,
System.Double size,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void AddText(Rhino.Display.Text3d text, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean Enabled
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean IsDisposed
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.Geometry.BoundingBox ClippingBox
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,14 @@
namespace Rhino.Display;
public enum DefinedViewportProjection
{
None,
Top,
Bottom,
Left,
Right,
Front,
Back,
Perspective,
TwoPointPerspective,
}
@@ -0,0 +1,8 @@
namespace Rhino.Display;
public enum DepthMode
{
Neutral,
AlwaysInFront,
AlwaysInBack,
}
@@ -0,0 +1,25 @@
namespace Rhino.Display;
public partial class DisplayBitmap : System.IDisposable
{
public DisplayBitmap() { }
public DisplayBitmap(System.Drawing.Bitmap bitmap) => throw new System.NotImplementedException();
public DisplayBitmap(System.String path, System.Drawing.Bitmap bitmap) => throw new System.NotImplementedException();
public static Rhino.Display.DisplayBitmap Load(System.String path) => throw new System.NotImplementedException();
public virtual void SetBlendFunction(Rhino.Display.BlendMode source, Rhino.Display.BlendMode destination) =>
throw new System.NotImplementedException();
public virtual void GetBlendModes(out Rhino.Display.BlendMode source, out Rhino.Display.BlendMode destination) =>
throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Drawing.Size Size
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,37 @@
namespace Rhino.Display;
public partial class DisplayBitmapDrawList
{
public DisplayBitmapDrawList() { }
public virtual System.Int32[] Sort(Rhino.Geometry.Vector3d cameraDirection) =>
throw new System.NotImplementedException();
public virtual void SetPoints(System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points) =>
throw new System.NotImplementedException();
public virtual void SetPoints(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points,
System.Drawing.Color blendColor
) => throw new System.NotImplementedException();
public virtual void SetPoints(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points,
System.Collections.Generic.IEnumerable<System.Drawing.Color> colors
) => throw new System.NotImplementedException();
public virtual Rhino.Geometry.BoundingBox BoundingBox
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 MaximumCachedSortLists
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double SortAngleTolerance
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,33 @@
namespace Rhino.Display;
public partial class DisplayConduit
{
public DisplayConduit() { }
public virtual void SetSelectionFilter(System.Boolean on, System.Boolean checkSubObjects) =>
throw new System.NotImplementedException();
public virtual void GetSelectionFilter(out System.Boolean on, out System.Boolean checkSubObjects) =>
throw new System.NotImplementedException();
public virtual void SetObjectIdFilter(System.Guid id) => throw new System.NotImplementedException();
public virtual void SetObjectIdFilter(System.Collections.Generic.IEnumerable<System.Guid> ids) =>
throw new System.NotImplementedException();
public virtual System.Boolean Enabled
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.DocObjects.ObjectType GeometryFilter
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.DocObjects.ActiveSpace SpaceFilter
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,8 @@
namespace Rhino.Display;
public partial class DisplayEngine : System.IDisposable
{
public DisplayEngine() { }
public virtual void Dispose() => throw new System.NotImplementedException();
}
@@ -0,0 +1,128 @@
namespace Rhino.Display;
public partial class DisplayMaterial : System.IDisposable
{
public DisplayMaterial() { }
public DisplayMaterial(Rhino.Display.DisplayMaterial other) => throw new System.NotImplementedException();
public DisplayMaterial(Rhino.DocObjects.Material material) => throw new System.NotImplementedException();
public DisplayMaterial(System.Drawing.Color diffuse) => throw new System.NotImplementedException();
public DisplayMaterial(System.Drawing.Color diffuse, System.Double transparency) =>
throw new System.NotImplementedException();
public DisplayMaterial(
System.Drawing.Color diffuse,
System.Drawing.Color specular,
System.Drawing.Color ambient,
System.Drawing.Color emission,
System.Double shine,
System.Double transparency
) => throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual Rhino.DocObjects.Texture GetBitmapTexture(System.Boolean front) =>
throw new System.NotImplementedException();
public virtual System.Boolean SetBitmapTexture(System.String filename, System.Boolean front) =>
throw new System.NotImplementedException();
public virtual System.Boolean SetBitmapTexture(Rhino.DocObjects.Texture texture, System.Boolean front) =>
throw new System.NotImplementedException();
public virtual Rhino.DocObjects.Texture GetBumpTexture(System.Boolean front) =>
throw new System.NotImplementedException();
public virtual System.Boolean SetBumpTexture(System.String filename, System.Boolean front) =>
throw new System.NotImplementedException();
public virtual System.Boolean SetBumpTexture(Rhino.DocObjects.Texture texture, System.Boolean front) =>
throw new System.NotImplementedException();
public virtual Rhino.DocObjects.Texture GetEnvironmentTexture(System.Boolean front) =>
throw new System.NotImplementedException();
public virtual System.Boolean SetEnvironmentTexture(System.String filename, System.Boolean front) =>
throw new System.NotImplementedException();
public virtual System.Boolean SetEnvironmentTexture(Rhino.DocObjects.Texture texture, System.Boolean front) =>
throw new System.NotImplementedException();
public virtual Rhino.DocObjects.Texture GetTransparencyTexture(System.Boolean front) =>
throw new System.NotImplementedException();
public virtual System.Boolean SetTransparencyTexture(System.String filename, System.Boolean front) =>
throw new System.NotImplementedException();
public virtual System.Boolean SetTransparencyTexture(Rhino.DocObjects.Texture texture, System.Boolean front) =>
throw new System.NotImplementedException();
public virtual System.Drawing.Color Diffuse
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color BackDiffuse
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color Specular
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color BackSpecular
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color Ambient
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color BackAmbient
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color Emission
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color BackEmission
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double Shine
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double BackShine
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double Transparency
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double BackTransparency
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean IsTwoSided
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,23 @@
namespace Rhino.Display;
public partial class DisplayModeChangedEventArgs : System.EventArgs
{
public DisplayModeChangedEventArgs() { }
public virtual Rhino.Display.RhinoViewport Viewport
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.RhinoDoc RhinoDoc
{
get => throw new System.NotImplementedException();
}
public virtual System.Guid OldDisplayModeId
{
get => throw new System.NotImplementedException();
}
public virtual System.Guid ChangedDisplayModeId
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,138 @@
namespace Rhino.Display;
public partial class DisplayModeDescription : System.IDisposable, System.Runtime.Serialization.ISerializable
{
public DisplayModeDescription() { }
public virtual void Dispose() => throw new System.NotImplementedException();
public static Rhino.Display.DisplayModeDescription[] GetDisplayModes() => throw new System.NotImplementedException();
public static Rhino.Display.DisplayModeDescription GetDisplayMode(System.Guid id) =>
throw new System.NotImplementedException();
public static Rhino.Display.DisplayModeDescription FindByName(System.String englishName) =>
throw new System.NotImplementedException();
public static System.Guid AddDisplayMode(Rhino.Display.DisplayModeDescription displayMode) =>
throw new System.NotImplementedException();
public static System.Guid AddDisplayMode(System.String name) => throw new System.NotImplementedException();
public static System.Guid CopyDisplayMode(System.Guid id, System.String name) =>
throw new System.NotImplementedException();
public static System.Boolean UpdateDisplayMode(Rhino.Display.DisplayModeDescription displayMode) =>
throw new System.NotImplementedException();
public static System.Boolean DeleteDiplayMode(System.Guid id) => throw new System.NotImplementedException();
public static System.Boolean DeleteDisplayMode(System.Guid id) => throw new System.NotImplementedException();
public static System.Guid ImportFromFile(System.String filename) => throw new System.NotImplementedException();
public static System.Boolean ExportToFile(Rhino.Display.DisplayModeDescription displayMode, System.String filename) =>
throw new System.NotImplementedException();
void System.Runtime.Serialization.ISerializable.GetObjectData(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context
) => throw new System.NotImplementedException();
public virtual System.Boolean InMenu
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean SupportsShadeCommand
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean SupportsShading
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean AllowObjectAssignment
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean ShadedPipelineRequired
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean WireframePipelineRequired
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean PipelineLocked
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.Display.DisplayPipelineAttributes DisplayAttributes
{
get => throw new System.NotImplementedException();
}
public virtual System.String EnglishName
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Guid Id
{
get => throw new System.NotImplementedException();
}
public virtual System.String LocalName
{
get => throw new System.NotImplementedException();
}
public static System.Guid ArtisticId
{
get => throw new System.NotImplementedException();
}
public static System.Guid GhostedId
{
get => throw new System.NotImplementedException();
}
public static System.Guid PenId
{
get => throw new System.NotImplementedException();
}
public static System.Guid RenderedId
{
get => throw new System.NotImplementedException();
}
public static System.Guid RenderedShadowsId
{
get => throw new System.NotImplementedException();
}
public static System.Guid ShadedId
{
get => throw new System.NotImplementedException();
}
public static System.Guid TechId
{
get => throw new System.NotImplementedException();
}
public static System.Guid WireframeId
{
get => throw new System.NotImplementedException();
}
public static System.Guid XRayId
{
get => throw new System.NotImplementedException();
}
public static System.Guid AmbientOcclusionId
{
get => throw new System.NotImplementedException();
}
public static System.Guid RaytracedId
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,78 @@
namespace Rhino.Display;
public partial class DisplayPen
{
public DisplayPen() { }
public virtual Rhino.Display.DisplayPen Duplicate() => throw new System.NotImplementedException();
public static Rhino.Display.DisplayPen FromLinetype(
Rhino.DocObjects.Linetype linetype,
System.Drawing.Color color,
System.Double patternScale
) => throw new System.NotImplementedException();
public virtual void SetPattern(System.Collections.Generic.IEnumerable<System.Single> dashesAndGaps) =>
throw new System.NotImplementedException();
public virtual System.Single[] PatternAsArray() => throw new System.NotImplementedException();
public virtual void SetTaper(
System.Single startThickness,
System.Single endThickness,
Rhino.Geometry.Point2f taperPoint
) => throw new System.NotImplementedException();
public virtual Rhino.Geometry.Point2f[] TaperAsArray() => throw new System.NotImplementedException();
public virtual System.Drawing.Color Color
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Single Thickness
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.DocObjects.CoordinateSystem ThicknessSpace
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.DocObjects.LineCapStyle CapStyle
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.DocObjects.LineJoinStyle JoinStyle
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Single HaloThickness
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color HaloColor
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Single PatternOffset
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean PatternBySegment
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean PatternLengthInWorldUnits
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,976 @@
namespace Rhino.Display;
public partial class DisplayPipeline
{
public DisplayPipeline() { }
public virtual Rhino.Display.DisplayMaterial SetupDisplayMaterial(
Rhino.RhinoDoc doc,
Rhino.DocObjects.RhinoObject rhinoObject,
Rhino.DocObjects.ObjectAttributes attributes
) => throw new System.NotImplementedException();
public virtual Rhino.Display.DisplayMaterial SetupDisplayMaterial(
Rhino.RhinoDoc doc,
Rhino.DocObjects.RhinoObject rhinoObject,
Rhino.DocObjects.ObjectAttributes attributes,
Rhino.Geometry.Transform instanceTransform
) => throw new System.NotImplementedException();
public virtual void DrawBrepWires(Rhino.Geometry.Brep brep, System.Drawing.Color color, System.Int32 wireDensity) =>
throw new System.NotImplementedException();
public virtual void DrawExtrusionWires(Rhino.Geometry.Extrusion extrusion, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawExtrusionWires(
Rhino.Geometry.Extrusion extrusion,
System.Drawing.Color color,
System.Int32 wireDensity
) => throw new System.NotImplementedException();
public virtual void DrawZebraPreview(Rhino.Geometry.Brep brep, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawZebraPreview(Rhino.Geometry.Mesh mesh, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawActivePoint(Rhino.Geometry.Point3d point) => throw new System.NotImplementedException();
public virtual void DrawPoint(Rhino.Geometry.Point3d point) => throw new System.NotImplementedException();
public virtual void DrawPoint(Rhino.Geometry.Point3d point, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawPoint(
Rhino.Geometry.Point3d point,
Rhino.Display.PointStyle style,
System.Single radius,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void DrawPoints(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points,
Rhino.Display.PointStyle style,
System.Single radius,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void DrawPoint(
Rhino.Geometry.Point3d point,
Rhino.Display.PointStyle style,
System.Drawing.Color strokeColor,
System.Drawing.Color fillColor,
System.Single radius,
System.Single strokeWidth,
System.Single secondarySize,
System.Single rotationRadians,
System.Boolean diameterIsInPixels,
System.Boolean autoScaleForDpi
) => throw new System.NotImplementedException();
public virtual void DrawPoints(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points,
Rhino.Display.PointStyle style,
System.Drawing.Color strokeColor,
System.Drawing.Color fillColor,
System.Single radius,
System.Single strokeWidth,
System.Single secondarySize,
System.Single rotationRadians,
System.Boolean diameterIsInPixels,
System.Boolean autoScaleForDpi
) => throw new System.NotImplementedException();
public virtual void DrawPoints(Rhino.Display.DisplayPointSet points) => throw new System.NotImplementedException();
public virtual void DrawPoints(
Rhino.Display.DisplayPointSet points,
Rhino.Display.DisplayPointAttributes fallbackAttributes,
Rhino.Display.DisplayPointAttributes overrideAttributes
) => throw new System.NotImplementedException();
public virtual void DrawPoint(
Rhino.Geometry.Point3d point,
Rhino.Display.PointStyle style,
System.Int32 radius,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void DrawPoints(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points,
Rhino.Display.PointStyle style,
System.Int32 radius,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void DrawPointCloud(Rhino.Geometry.PointCloud cloud, System.Single size) =>
throw new System.NotImplementedException();
public virtual void DrawPointCloud(Rhino.Geometry.PointCloud cloud, System.Single size, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawPointCloud(Rhino.Geometry.PointCloud cloud, System.Int32 size) =>
throw new System.NotImplementedException();
public virtual void DrawPointCloud(Rhino.Geometry.PointCloud cloud, System.Int32 size, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawDirectionArrow(
Rhino.Geometry.Point3d location,
Rhino.Geometry.Vector3d direction,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void DrawArrow(Rhino.Geometry.Line line, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawArrow(
Rhino.Geometry.Line line,
System.Drawing.Color color,
System.Double screenSize,
System.Double relativeSize
) => throw new System.NotImplementedException();
public virtual void DrawArrows(Rhino.Geometry.Line[] lines, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawArrows(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Line> lines,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void DrawArrowHead(
Rhino.Geometry.Point3d tip,
Rhino.Geometry.Vector3d direction,
System.Drawing.Color color,
System.Double screenSize,
System.Double worldSize
) => throw new System.NotImplementedException();
public virtual void DrawLineArrow(
Rhino.Geometry.Line line,
System.Drawing.Color color,
System.Int32 thickness,
System.Double size
) => throw new System.NotImplementedException();
public virtual void DrawLine(Rhino.Geometry.Line line, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawLine(Rhino.Geometry.Line line, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void DrawLine(Rhino.Geometry.Point3d from, Rhino.Geometry.Point3d to, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawLine(
Rhino.Geometry.Point3d from,
Rhino.Geometry.Point3d to,
System.Drawing.Color color,
System.Int32 thickness
) => throw new System.NotImplementedException();
public virtual void DrawLineNoClip(
Rhino.Geometry.Point3d from,
Rhino.Geometry.Point3d to,
System.Drawing.Color color,
System.Int32 thickness
) => throw new System.NotImplementedException();
public virtual void DrawDottedLine(Rhino.Geometry.Line line, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawPatternedLine(
Rhino.Geometry.Line line,
System.Drawing.Color color,
System.Int32 pattern,
System.Int32 thickness
) => throw new System.NotImplementedException();
public virtual void DrawDottedLine(
Rhino.Geometry.Point3d from,
Rhino.Geometry.Point3d to,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void DrawPatternedLine(
Rhino.Geometry.Point3d from,
Rhino.Geometry.Point3d to,
System.Drawing.Color color,
System.Int32 pattern,
System.Int32 thickness
) => throw new System.NotImplementedException();
public virtual void DrawDottedPolyline(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points,
System.Drawing.Color color,
System.Boolean close
) => throw new System.NotImplementedException();
public virtual void DrawPatternedPolyline(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points,
System.Drawing.Color color,
System.Int32 pattern,
System.Int32 thickness,
System.Boolean close
) => throw new System.NotImplementedException();
public virtual void DrawLines(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Line> lines,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void DrawLines(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Line> lines,
System.Drawing.Color color,
System.Int32 thickness
) => throw new System.NotImplementedException();
public virtual void DrawPolyline(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> polyline,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void DrawPolyline(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> polyline,
System.Drawing.Color color,
System.Int32 thickness
) => throw new System.NotImplementedException();
public virtual void DrawPolygon(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Point3d> points,
System.Drawing.Color color,
System.Boolean filled
) => throw new System.NotImplementedException();
public virtual void DrawBitmap(Rhino.Display.DisplayBitmap bitmap, System.Int32 left, System.Int32 top) =>
throw new System.NotImplementedException();
public virtual void DrawDot(
System.Single screenX,
System.Single screenY,
System.String text,
System.Drawing.Color dotColor,
System.Drawing.Color textColor
) => throw new System.NotImplementedException();
public virtual void DrawDot(System.Single screenX, System.Single screenY, System.String text) =>
throw new System.NotImplementedException();
public virtual void DrawDot(
Rhino.Geometry.Point3d worldPosition,
System.String text,
System.Drawing.Color dotColor,
System.Drawing.Color textColor
) => throw new System.NotImplementedException();
public virtual void DrawDot(Rhino.Geometry.Point3d worldPosition, System.String text) =>
throw new System.NotImplementedException();
public virtual void DrawDot(
Rhino.Geometry.TextDot dot,
System.Drawing.Color fillColor,
System.Drawing.Color textColor,
System.Drawing.Color borderColor
) => throw new System.NotImplementedException();
public virtual void DrawHatch(
Rhino.Geometry.Hatch hatch,
System.Drawing.Color hatchColor,
System.Drawing.Color boundaryColor
) => throw new System.NotImplementedException();
public virtual void DrawHatch(
Rhino.Geometry.Hatch hatch,
System.Drawing.Color hatchColor,
Rhino.Display.DisplayPen boundary,
System.Drawing.Color backgroundFillColor
) => throw new System.NotImplementedException();
public virtual void DrawGradientHatch(
Rhino.Geometry.Hatch hatch,
System.Drawing.Color color1,
System.Drawing.Color color2,
Rhino.Geometry.Point3d point1,
Rhino.Geometry.Point3d point2,
System.Boolean linearGradient,
System.Single boundaryThickness,
System.Drawing.Color boundaryColor
) => throw new System.NotImplementedException();
public virtual void DrawGradientHatch(
Rhino.Geometry.Hatch hatch,
System.Collections.Generic.IEnumerable<Rhino.Display.ColorStop> stops,
Rhino.Geometry.Point3d point1,
Rhino.Geometry.Point3d point2,
System.Boolean linearGradient,
System.Single repeat,
System.Single boundaryThickness,
System.Drawing.Color boundaryColor
) => throw new System.NotImplementedException();
public virtual void DrawGradientHatch(
Rhino.Geometry.Hatch hatch,
System.Collections.Generic.IEnumerable<Rhino.Display.ColorStop> stops,
Rhino.Geometry.Point3d point1,
Rhino.Geometry.Point3d point2,
System.Boolean linearGradient,
System.Single repeat,
Rhino.Display.DisplayPen boundary,
System.Drawing.Color backgroundFillColor
) => throw new System.NotImplementedException();
public virtual void DrawGradientMesh(
Rhino.Geometry.Mesh mesh,
System.Collections.Generic.IEnumerable<Rhino.Display.ColorStop> stops,
Rhino.Geometry.Point3d point1,
Rhino.Geometry.Point3d point2,
System.Boolean linearGradient,
System.Single repeat
) => throw new System.NotImplementedException();
public virtual void DrawGradientLines(
System.Collections.Generic.IEnumerable<Rhino.Geometry.Line> lines,
System.Single strokeWidth,
System.Collections.Generic.IEnumerable<Rhino.Display.ColorStop> stops,
Rhino.Geometry.Point3d point1,
Rhino.Geometry.Point3d point2,
System.Boolean linearGradient,
System.Single repeat
) => throw new System.NotImplementedException();
public virtual void DrawBox(Rhino.Geometry.BoundingBox box, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawBox(Rhino.Geometry.BoundingBox box, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void DrawBox(Rhino.Geometry.Box box, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawBox(Rhino.Geometry.Box box, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void DrawBoxCorners(Rhino.Geometry.BoundingBox box, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawBoxCorners(Rhino.Geometry.BoundingBox box, System.Drawing.Color color, System.Double size) =>
throw new System.NotImplementedException();
public virtual void DrawBoxCorners(
Rhino.Geometry.BoundingBox box,
System.Drawing.Color color,
System.Double size,
System.Int32 thickness
) => throw new System.NotImplementedException();
public virtual void DrawMarker(
Rhino.Geometry.Point3d tip,
Rhino.Geometry.Vector3d direction,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void DrawMarker(
Rhino.Geometry.Point3d tip,
Rhino.Geometry.Vector3d direction,
System.Drawing.Color color,
System.Int32 thickness
) => throw new System.NotImplementedException();
public virtual void DrawMarker(
Rhino.Geometry.Point3d tip,
Rhino.Geometry.Vector3d direction,
System.Drawing.Color color,
System.Int32 thickness,
System.Double size
) => throw new System.NotImplementedException();
public virtual void DrawMarker(
Rhino.Geometry.Point3d tip,
Rhino.Geometry.Vector3d direction,
System.Drawing.Color color,
System.Int32 thickness,
System.Double size,
System.Double rotation
) => throw new System.NotImplementedException();
public virtual void DrawLight(Rhino.Geometry.Light light, System.Drawing.Color wireframeColor) =>
throw new System.NotImplementedException();
public virtual void DrawConstructionPlane(Rhino.DocObjects.ConstructionPlane constructionPlane) =>
throw new System.NotImplementedException();
public virtual void Draw2dText(
System.String text,
System.Drawing.Color color,
Rhino.Geometry.Point2d screenCoordinate,
System.Boolean middleJustified
) => throw new System.NotImplementedException();
public virtual void Draw2dText(
System.String text,
System.Drawing.Color color,
Rhino.Geometry.Point2d screenCoordinate,
System.Boolean middleJustified,
System.Int32 height
) => throw new System.NotImplementedException();
public virtual void Draw2dText(
System.String text,
System.Drawing.Color color,
Rhino.Geometry.Point2d screenCoordinate,
System.Boolean middleJustified,
System.Int32 height,
System.String fontface
) => throw new System.NotImplementedException();
public virtual void Draw2dText(
System.String text,
System.Drawing.Color color,
Rhino.Geometry.Point3d worldCoordinate,
System.Boolean middleJustified
) => throw new System.NotImplementedException();
public virtual void Draw2dText(
System.String text,
System.Drawing.Color color,
Rhino.Geometry.Point3d worldCoordinate,
System.Boolean middleJustified,
System.Int32 height
) => throw new System.NotImplementedException();
public virtual void Draw2dText(
System.String text,
System.Drawing.Color color,
Rhino.Geometry.Point3d worldCoordinate,
System.Boolean middleJustified,
System.Int32 height,
System.String fontface
) => throw new System.NotImplementedException();
public virtual void Draw3dText(
System.String text,
System.Drawing.Color color,
Rhino.Geometry.Plane textPlane,
System.Double height,
System.String fontface,
System.Boolean bold,
System.Boolean italic,
Rhino.DocObjects.TextHorizontalAlignment horizontalAlignment,
Rhino.DocObjects.TextVerticalAlignment verticalAlignment
) => throw new System.NotImplementedException();
public virtual void Draw3dText(
System.String text,
System.Drawing.Color color,
Rhino.Geometry.Plane textPlane,
System.Double height,
System.String fontface,
System.Boolean bold,
System.Boolean italic
) => throw new System.NotImplementedException();
public virtual void Draw3dText(
System.String text,
System.Drawing.Color color,
Rhino.Geometry.Plane textPlane,
System.Double height,
System.String fontface
) => throw new System.NotImplementedException();
public virtual void Draw3dText(Rhino.Display.Text3d text, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void Draw3dText(
Rhino.Display.Text3d text,
System.Drawing.Color color,
Rhino.Geometry.Plane textPlane
) => throw new System.NotImplementedException();
public virtual void Draw3dText(
Rhino.Display.Text3d text,
System.Drawing.Color color,
Rhino.Geometry.Point3d textPlaneOrigin
) => throw new System.NotImplementedException();
public virtual void DrawText(Rhino.Geometry.TextEntity text, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawText(Rhino.Geometry.TextEntity text, System.Drawing.Color color, System.Double scale) =>
throw new System.NotImplementedException();
public virtual void DrawText(
Rhino.Geometry.TextEntity text,
System.Drawing.Color color,
Rhino.Geometry.Transform xform
) => throw new System.NotImplementedException();
public virtual System.Drawing.Rectangle Measure2dText(
System.String text,
Rhino.Geometry.Point2d definitionPoint,
System.Boolean middleJustified,
System.Double rotationRadians,
System.Int32 height,
System.String fontFace
) => throw new System.NotImplementedException();
public virtual void DrawObject(Rhino.DocObjects.RhinoObject rhinoObject) =>
throw new System.NotImplementedException();
public virtual void DrawObject(Rhino.DocObjects.RhinoObject rhinoObject, Rhino.Geometry.Transform xform) =>
throw new System.NotImplementedException();
public virtual void DrawInstanceDefinition(Rhino.DocObjects.InstanceDefinition instanceDefinition) =>
throw new System.NotImplementedException();
public virtual void DrawInstanceDefinition(
Rhino.DocObjects.InstanceDefinition instanceDefinition,
Rhino.Geometry.Transform xform
) => throw new System.NotImplementedException();
public virtual void DrawAnnotation(Rhino.Geometry.AnnotationBase annotation, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawAnnotationArrowhead(
Rhino.Geometry.Arrowhead arrowhead,
Rhino.Geometry.Transform xform,
System.Drawing.Color color
) => throw new System.NotImplementedException();
public virtual void DrawArc(Rhino.Geometry.Arc arc, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawArc(Rhino.Geometry.Arc arc, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void DrawCircle(Rhino.Geometry.Circle circle, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawCircle(Rhino.Geometry.Circle circle, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void DrawSphere(Rhino.Geometry.Sphere sphere, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawSphere(Rhino.Geometry.Sphere sphere, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void DrawTorus(Rhino.Geometry.Torus torus, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawTorus(Rhino.Geometry.Torus torus, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void DrawCylinder(Rhino.Geometry.Cylinder cylinder, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawCylinder(
Rhino.Geometry.Cylinder cylinder,
System.Drawing.Color color,
System.Int32 thickness
) => throw new System.NotImplementedException();
public virtual void DrawCone(Rhino.Geometry.Cone cone, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawCone(Rhino.Geometry.Cone cone, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void DrawCurve(Rhino.Geometry.Curve curve, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawCurve(Rhino.Geometry.Curve curve, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void DrawCurve(Rhino.Geometry.Curve curve, Rhino.Display.DisplayPen pen) =>
throw new System.NotImplementedException();
public virtual void DrawLine(Rhino.Geometry.Line line, Rhino.Display.DisplayPen pen) =>
throw new System.NotImplementedException();
public virtual void DrawLines(Rhino.Geometry.Line[] lines, Rhino.Display.DisplayPen pen) =>
throw new System.NotImplementedException();
public virtual void DrawCurvatureGraph(Rhino.Geometry.Curve curve, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawCurvatureGraph(
Rhino.Geometry.Curve curve,
System.Drawing.Color color,
System.Int32 hairScale
) => throw new System.NotImplementedException();
public virtual void DrawCurvatureGraph(
Rhino.Geometry.Curve curve,
System.Drawing.Color color,
System.Int32 hairScale,
System.Int32 hairDensity,
System.Int32 sampleDensity
) => throw new System.NotImplementedException();
public virtual void DrawSurface(
Rhino.Geometry.Surface surface,
System.Drawing.Color wireColor,
System.Int32 wireDensity
) => throw new System.NotImplementedException();
public virtual void DrawSprite(
Rhino.Display.DisplayBitmap bitmap,
Rhino.Geometry.Point3d worldLocation,
System.Single size,
System.Boolean sizeInWorldSpace
) => throw new System.NotImplementedException();
public virtual void DrawSprite(
Rhino.Display.DisplayBitmap bitmap,
Rhino.Geometry.Point3d worldLocation,
System.Single size,
System.Drawing.Color blendColor,
System.Boolean sizeInWorldSpace
) => throw new System.NotImplementedException();
public virtual void DrawSprite(
Rhino.Display.DisplayBitmap bitmap,
Rhino.Geometry.Point2d screenLocation,
System.Single size
) => throw new System.NotImplementedException();
public virtual void DrawSprite(
Rhino.Display.DisplayBitmap bitmap,
Rhino.Geometry.Point2d screenLocation,
System.Single size,
System.Drawing.Color blendColor
) => throw new System.NotImplementedException();
public virtual void DrawSprite(
Rhino.Display.DisplayBitmap bitmap,
Rhino.Geometry.Point2d screenLocation,
System.Single width,
System.Single height
) => throw new System.NotImplementedException();
public virtual void DrawSprites(
Rhino.Display.DisplayBitmap bitmap,
Rhino.Display.DisplayBitmapDrawList items,
System.Single size,
System.Boolean sizeInWorldSpace
) => throw new System.NotImplementedException();
public virtual void DrawSprites(
Rhino.Display.DisplayBitmap bitmap,
Rhino.Display.DisplayBitmapDrawList items,
System.Single size,
Rhino.Geometry.Vector3d translation,
System.Boolean sizeInWorldSpace
) => throw new System.NotImplementedException();
public virtual void DrawParticles(Rhino.Geometry.ParticleSystem particles) =>
throw new System.NotImplementedException();
public virtual void DrawParticles(Rhino.Geometry.ParticleSystem particles, Rhino.Display.DisplayBitmap bitmap) =>
throw new System.NotImplementedException();
public virtual void DrawParticles(Rhino.Geometry.ParticleSystem particles, Rhino.Display.DisplayBitmap[] bitmaps) =>
throw new System.NotImplementedException();
public virtual void Draw2dRectangle(
System.Drawing.Rectangle rectangle,
System.Drawing.Color strokeColor,
System.Int32 thickness,
System.Drawing.Color fillColor
) => throw new System.NotImplementedException();
public virtual void DrawRoundedRectangle(
System.Drawing.PointF center,
System.Single pixelWidth,
System.Single pixelHeight,
System.Single cornerRadius,
System.Drawing.Color strokeColor,
System.Single strokeWidth,
System.Drawing.Color fillColor
) => throw new System.NotImplementedException();
public virtual void Draw2dLine(
System.Drawing.Point from,
System.Drawing.Point to,
System.Drawing.Color color,
System.Single thickness
) => throw new System.NotImplementedException();
public virtual void Draw2dLine(
System.Drawing.PointF from,
System.Drawing.PointF to,
System.Drawing.Color color,
System.Single thickness
) => throw new System.NotImplementedException();
public virtual Rhino.Display.DisplayMaterial SetupDisplayMaterial(
Rhino.RhinoDoc doc,
Rhino.DocObjects.RhinoObject rhinoObject
) => throw new System.NotImplementedException();
public virtual Rhino.Display.DisplayMaterial SetupDisplayMaterial(System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsInTiledDraw(
out System.Drawing.Size fullSize,
out System.Drawing.Rectangle currentTile
) => throw new System.NotImplementedException();
public static System.UInt32 AvailableOpenGLVersion(out System.Boolean coreProfile) =>
throw new System.NotImplementedException();
public static System.Boolean MakeDefaultOpenGLContextCurrent() => throw new System.NotImplementedException();
public virtual System.Boolean Open() => throw new System.NotImplementedException();
public virtual System.Boolean Close() => throw new System.NotImplementedException();
public virtual Rhino.Display.DisplayPipeline Clone(Rhino.Display.RhinoViewport viewport) =>
throw new System.NotImplementedException();
public virtual void PushModelTransform(Rhino.Geometry.Transform xform) => throw new System.NotImplementedException();
public virtual void PopModelTransform() => throw new System.NotImplementedException();
public virtual void EnableDepthTesting(System.Boolean enable) => throw new System.NotImplementedException();
public virtual void EnableDepthWriting(System.Boolean enable) => throw new System.NotImplementedException();
public virtual void EnableColorWriting(System.Boolean enable) => throw new System.NotImplementedException();
public virtual void EnableLighting(System.Boolean enable) => throw new System.NotImplementedException();
public virtual Rhino.Geometry.Light[] GetLights() => throw new System.NotImplementedException();
public virtual void EnableClippingPlanes(System.Boolean enable) => throw new System.NotImplementedException();
public virtual System.Int32 AddClippingPlane(Rhino.Geometry.Point3d point, Rhino.Geometry.Vector3d normal) =>
throw new System.NotImplementedException();
public virtual void RemoveClippingPlane(System.Int32 index) => throw new System.NotImplementedException();
public virtual void PushDepthTesting(System.Boolean enable) => throw new System.NotImplementedException();
public virtual void PopDepthTesting() => throw new System.NotImplementedException();
public virtual void PushDepthWriting(System.Boolean enable) => throw new System.NotImplementedException();
public virtual void PopDepthWriting() => throw new System.NotImplementedException();
public virtual void PushClipTesting(System.Boolean enable) => throw new System.NotImplementedException();
public virtual void PopClipTesting() => throw new System.NotImplementedException();
public virtual void PushCullFaceMode(Rhino.Display.CullFaceMode mode) => throw new System.NotImplementedException();
public virtual void PopCullFaceMode() => throw new System.NotImplementedException();
public virtual void Push2dProjection() => throw new System.NotImplementedException();
public virtual void PopProjection() => throw new System.NotImplementedException();
public static void GetDrawListSerialNumbers(
out System.UInt32 modelSerialNumber,
out System.UInt32 pageSerialNumber
) => throw new System.NotImplementedException();
public static System.Boolean CullControlPolygon() => throw new System.NotImplementedException();
public virtual void ClearFrameBuffer(System.Drawing.Color color) => throw new System.NotImplementedException();
public virtual void Flush() => throw new System.NotImplementedException();
public virtual System.Boolean IsVisible(Rhino.Geometry.Point3d worldCoordinate) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsVisible(Rhino.DocObjects.RhinoObject rhinoObject) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsVisible(Rhino.Geometry.BoundingBox bbox) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsActive(Rhino.DocObjects.RhinoObject rhinoObject) =>
throw new System.NotImplementedException();
public virtual System.Boolean InterruptDrawing() => throw new System.NotImplementedException();
public virtual System.Single[] GetOpenGLWorldToCamera(System.Boolean includeModelTransform) =>
throw new System.NotImplementedException();
public virtual System.Single[] GetOpenGLWorldToClip(System.Boolean includeModelTransform) =>
throw new System.NotImplementedException();
public virtual System.Single[] GetOpenGLCameraToClip() => throw new System.NotImplementedException();
public static System.Drawing.Bitmap DrawToBitmap(
Rhino.Display.RhinoViewport viewport,
System.Int32 width,
System.Int32 height
) => throw new System.NotImplementedException();
public virtual System.Boolean DrawStereoFrameBuffer(
Rhino.DocObjects.ViewportInfo viewportLeft,
Rhino.DocObjects.ViewportInfo viewportRight,
out System.UInt32 handleLeft,
out System.UInt32 handleRight
) => throw new System.NotImplementedException();
public virtual void DrawMeshWires(Rhino.Geometry.Mesh mesh, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawMeshWires(Rhino.Geometry.Mesh mesh, System.Drawing.Color color, System.Int32 thickness) =>
throw new System.NotImplementedException();
public virtual void DrawMeshVertices(Rhino.Geometry.Mesh mesh, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual void DrawMeshShaded(Rhino.Geometry.Mesh mesh, Rhino.Display.DisplayMaterial material) =>
throw new System.NotImplementedException();
public virtual void DrawMeshShaded(
Rhino.Geometry.Mesh mesh,
Rhino.Display.DisplayMaterial material,
System.Int32[] faceIndices
) => throw new System.NotImplementedException();
public virtual void DrawMeshFalseColors(Rhino.Geometry.Mesh mesh) => throw new System.NotImplementedException();
public virtual void DrawSubDShaded(Rhino.Geometry.SubD subd, Rhino.Display.DisplayMaterial material) =>
throw new System.NotImplementedException();
public virtual void DrawSubDWires(Rhino.Geometry.SubD subd, System.Drawing.Color color, System.Single thickness) =>
throw new System.NotImplementedException();
public virtual void DrawSubDWires(
Rhino.Geometry.SubD subd,
Rhino.Display.DisplayPen boundaryPen,
Rhino.Display.DisplayPen smoothInteriorPen,
Rhino.Display.DisplayPen creasePen,
Rhino.Display.DisplayPen nonmanifoldPen
) => throw new System.NotImplementedException();
public virtual void DrawBrepShaded(Rhino.Geometry.Brep brep, Rhino.Display.DisplayMaterial material) =>
throw new System.NotImplementedException();
public virtual void DrawBrepWires(Rhino.Geometry.Brep brep, System.Drawing.Color color) =>
throw new System.NotImplementedException();
public virtual System.Drawing.Size FrameSize
{
get => throw new System.NotImplementedException();
}
public virtual System.Drawing.Bitmap FrameBuffer
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 DefaultCurveThickness
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsOpenGL
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsStereoMode
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsPrinting
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsInViewCapture
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsDynamicDisplay
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean SupportsShading
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 StereoProjection
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.Geometry.Transform ModelTransform
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean ModelTransformIsIdentity
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 RenderPass
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 NestLevel
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.DocObjects.RhinoObject ActiveTopLevelObject
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.DocObjects.RhinoObject ActiveObject
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 ActiveObjectNestingLevel
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.DocObjects.RhinoObject[] ActiveObjectNestingStack
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsOpen
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean DrawingWires
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean DrawingGrips
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean DrawingSurfaces
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean ShadingRequired
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.Display.RhinoViewport Viewport
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.Display.DisplayPipelineAttributes DisplayPipelineAttributes
{
get => throw new System.NotImplementedException();
}
public virtual System.Single DpiScale
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.Display.DepthMode DepthMode
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.Display.ZBiasMode ZBiasMode
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,11 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum BoundingBoxDisplayMode
{
None,
OnDuringDynamicDisplay,
OnAlways,
}
}
@@ -0,0 +1,11 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum ClippingEdgeColorUse
{
PlaneColor,
SolidColor,
ObjectColor,
}
}
@@ -0,0 +1,12 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum ClippingPlaneFillColorUse
{
ViewportColor,
RenderMaterialColor,
PlaneMaterialColor,
SolidColor,
}
}
@@ -0,0 +1,11 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum ClippingShadeColorUse
{
PlaneColor,
PlaneMaterialColor,
SolidColor,
}
}
@@ -0,0 +1,15 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum ContextsForDraw
{
Unset,
FilePreview,
ViewCapture,
Printing,
UIPreview,
Mask,
RenderOverlays,
}
}
@@ -0,0 +1,10 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum CurveThicknessUse
{
ObjectWidth,
Pixels,
}
}
@@ -0,0 +1,10 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum DynamicDisplayUse
{
UseAppSettings,
DisplayObjectBoundingBox,
}
}
@@ -0,0 +1,15 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum FrameBufferFillMode
{
DefaultColor,
SolidColor,
Gradient2Color,
Gradient4Color,
Bitmap,
Renderer,
Transparent,
}
}
@@ -0,0 +1,10 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum GridPlaneVisibilityMode
{
ShowOnlyIfGridVisible,
AlwaysShow,
}
}
@@ -0,0 +1,13 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum LightingSchema
{
None,
DefaultLighting,
SceneLighting,
CustomLighting,
AmbientOcclusion,
}
}
@@ -0,0 +1,11 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum LockedObjectUse
{
UseObjectAttributes,
SpecifyColor,
UseAppSettings,
}
}
@@ -0,0 +1,35 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public partial class MeshDisplayAttributes
{
public MeshDisplayAttributes() { }
public virtual System.Boolean HighlightMeshes
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color AllMeshWiresColor
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Int32 MeshWireThickness
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean ShowMeshWires
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean ShowMeshVertices
{
get => throw new System.NotImplementedException();
set { }
}
}
}
@@ -0,0 +1,10 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum SubDEdgeColorUse
{
ObjectColor,
SingleColorForAll,
}
}
@@ -0,0 +1,11 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum SubDReflectionPlaneColorUse
{
ObjectColor,
CustomColor,
SingleColorForAll,
}
}
@@ -0,0 +1,10 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum SubDThicknessUse
{
ObjectWidth,
Pixels,
}
}
@@ -0,0 +1,11 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum SurfaceEdgeColorUse
{
ObjectColor,
IsocurveColor,
SingleColorForAll,
}
}
@@ -0,0 +1,11 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum SurfaceIsoColorUse
{
ObjectColor,
SingleColorForAll,
SpecifiedUV,
}
}
@@ -0,0 +1,11 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum SurfaceIsoThicknessUse
{
ObjectWidth,
SingleWidthForAllCurves,
PixelsUV,
}
}
@@ -0,0 +1,12 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum SurfaceNakedEdgeColorUse
{
UseSurfaceEdgeSettings,
ObjectColor,
IsoCurveColor,
SingleColorForAll,
}
}
@@ -0,0 +1,11 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum SurfaceNakedEdgeThicknessUse
{
UseSurfaceEdgeSettings,
ObjectWidth,
Pixels,
}
}
@@ -0,0 +1,10 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum SurfaceThicknessUse
{
ObjectWidth,
Pixels,
}
}
@@ -0,0 +1,75 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public partial class ViewDisplayAttributes
{
public ViewDisplayAttributes() { }
public virtual System.Boolean UseDocumentGrid
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean DrawGrid
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean DrawGridAxes
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean DrawZAxis
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean DrawWorldAxes
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean ShowGridOnTop
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean BlendGrid
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean DrawTransparentGridPlane
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color WorldAxisColorX
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color WorldAxisColorY
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Drawing.Color WorldAxisColorZ
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double HorizontalViewportScale
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double VerticalViewportScale
{
get => throw new System.NotImplementedException();
set { }
}
}
}
@@ -0,0 +1,11 @@
namespace Rhino.Display;
public partial class DisplayPipelineAttributes
{
public enum WorldAxesIconColorUse
{
UseApplicationSettings,
SameAsGridAxesColors,
Custom,
}
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,16 @@
namespace Rhino.Display;
public partial class DisplayPoint
{
public DisplayPoint() { }
public DisplayPoint(Rhino.Geometry.Point3d location) => throw new System.NotImplementedException();
public virtual Rhino.Display.DisplayPoint WithAttributes(Rhino.Display.DisplayPointAttributes attributes) =>
throw new System.NotImplementedException();
public virtual Rhino.Geometry.Point3d Location
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,45 @@
namespace Rhino.Display;
public partial class DisplayPointAttributes
{
public DisplayPointAttributes() { }
public DisplayPointAttributes(Rhino.Display.DisplayPointAttributes attributes) =>
throw new System.NotImplementedException();
public virtual System.Nullable<Rhino.Display.PointStyle> PointStyle
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Nullable<System.Drawing.Color> StrokeColor
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Nullable<System.Drawing.Color> FillColor
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Nullable<System.Single> Diameter
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Nullable<System.Single> StrokeWidth
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Nullable<System.Single> SecondarySize
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Nullable<System.Single> RotationRadians
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,12 @@
namespace Rhino.Display;
public partial class DisplayPointSet : System.IDisposable
{
public DisplayPointSet() { }
public static Rhino.Display.DisplayPointSet Create(
System.Collections.Generic.IEnumerable<Rhino.Display.DisplayPoint> points
) => throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
}
@@ -0,0 +1,11 @@
namespace Rhino.Display;
public enum DisplayTechnology
{
None,
OpenGL,
Metal,
DirectX,
Software,
Vulkan,
}
@@ -0,0 +1,19 @@
namespace Rhino.Display;
public partial class DrawEventArgs : System.EventArgs
{
public DrawEventArgs() { }
public virtual Rhino.Display.RhinoViewport Viewport
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.Display.DisplayPipeline Display
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.RhinoDoc RhinoDoc
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,17 @@
namespace Rhino.Display;
public partial class DrawForegroundEventArgs : Rhino.Display.DrawEventArgs
{
public DrawForegroundEventArgs() { }
public virtual System.Boolean WorldAxesDrawn
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean DrawWorldAxes
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,26 @@
namespace Rhino.Display;
public enum DrawFrameStages
{
InitializeFrameBuffer,
SetupFrustum,
ObjectCulling,
CalculateBoundingBox,
CalculateClippingPlanes,
SetupLighting,
DrawBackground,
PreDrawObjects,
DrawObject,
PostDrawObjects,
DrawForeGround,
DrawOverlay,
PostProcessFrameBuffer,
MeshingParameters,
ObjectDisplayAttributes,
PreObjectDraw,
PostObjectDraw,
ViewExtents,
DrawMiddleGround,
ObjectBasedChannel,
All,
}
@@ -0,0 +1,16 @@
namespace Rhino.Display;
public partial class DrawObjectEventArgs : Rhino.Display.DrawEventArgs
{
public DrawObjectEventArgs() { }
public virtual Rhino.DocObjects.RhinoObject RhinoObject
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean DrawObject
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,14 @@
namespace Rhino.Display;
public enum FlairLayer
{
Normals,
Depth,
Shadows,
Shading,
Material,
Details,
Background,
Selection,
Unknown,
}
@@ -0,0 +1,10 @@
namespace Rhino.Display;
public enum GradientType
{
None,
Linear,
Radial,
LinearDisabled,
RadialDisabled,
}
@@ -0,0 +1,18 @@
namespace Rhino.Display;
public partial class InitFrameBufferEventArgs : System.EventArgs
{
public InitFrameBufferEventArgs() { }
public virtual void SetFill(System.Drawing.Color color) => throw new System.NotImplementedException();
public virtual void SetFill(System.Drawing.Color top, System.Drawing.Color bottom) =>
throw new System.NotImplementedException();
public virtual void SetFill(
System.Drawing.Color topLeft,
System.Drawing.Color bottomLeft,
System.Drawing.Color topRight,
System.Drawing.Color bottomRight
) => throw new System.NotImplementedException();
}
@@ -0,0 +1,10 @@
namespace Rhino.Display;
public enum IsometricCamera
{
None,
Northeast,
Northwest,
Southeast,
Southwest,
}
@@ -0,0 +1,25 @@
namespace Rhino.Display;
public partial class PageViewPropertiesChangeEventArgs : System.EventArgs
{
public PageViewPropertiesChangeEventArgs() { }
public virtual System.UInt32 DocumentSerialNumber
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.UInt32 PageViewSerialNumber
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.RhinoDoc Document
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.Display.RhinoPageView PageView
{
get => throw new System.NotImplementedException();
}
}
@@ -0,0 +1,21 @@
namespace Rhino.Display;
public partial class PageViewSpaceChangeEventArgs : System.EventArgs
{
public PageViewSpaceChangeEventArgs() { }
public virtual Rhino.Display.RhinoPageView PageView
{
get => throw new System.NotImplementedException();
}
public virtual System.Guid NewActiveDetailId
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Guid OldActiveDetailId
{
get => throw new System.NotImplementedException();
set { }
}
}
@@ -0,0 +1,29 @@
namespace Rhino.Display;
public enum PointStyle
{
Simple,
ControlPoint,
ActivePoint,
X,
RoundSimple,
RoundControlPoint,
RoundActivePoint,
Circle,
Square,
Triangle,
Heart,
Chevron,
Clover,
Tag,
Asterisk,
Pin,
ArrowTail,
ArrowTip,
VariableDot,
SolidSquare,
RoundDot,
SolidRound,
SolidCircle,
None,
}
@@ -0,0 +1,73 @@
namespace Rhino.Display;
public partial class RhinoPageView : Rhino.Display.RhinoView
{
public RhinoPageView() { }
public virtual Rhino.Display.RhinoPageView Duplicate(System.Boolean duplicatePageGeometry) =>
throw new System.NotImplementedException();
public virtual void SetPageAsActive() => throw new System.NotImplementedException();
public virtual System.Boolean SetActiveDetail(System.Guid detailId) => throw new System.NotImplementedException();
public virtual System.Boolean SetActiveDetail(System.String detailName, System.Boolean compareCase) =>
throw new System.NotImplementedException();
public virtual Rhino.DocObjects.DetailViewObject AddDetailView(
System.String title,
Rhino.Geometry.Point2d corner0,
Rhino.Geometry.Point2d corner1,
Rhino.Display.DefinedViewportProjection initialProjection
) => throw new System.NotImplementedException();
public virtual Rhino.DocObjects.DetailViewObject[] GetDetailViews() => throw new System.NotImplementedException();
public virtual System.Drawing.Bitmap GetPreviewImage(System.Drawing.Size size, System.Boolean grayScale) =>
throw new System.NotImplementedException();
public new Rhino.Display.RhinoViewport ActiveViewport
{
get => throw new System.NotImplementedException();
}
public virtual System.Guid ActiveDetailId
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.DocObjects.DetailViewObject ActiveDetail
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean PageIsActive
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 PageNumber
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double PageWidth
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double PageHeight
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String PageName
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String PrinterName
{
get => throw new System.NotImplementedException();
}
public virtual System.String PaperName
{
get => throw new System.NotImplementedException();
}
}

Some files were not shown because too many files have changed in this diff Show More