Files
speckle-sharp-host-apis/Speckle.Rhino7.Fakes/generated/Rhino.Runtime.PythonScript.s.cs
T
Adam Hathcock 242cf50726 Rhino fakes (#28)
* first pass of making Rhino work: more structs, nested types and some generic work

* ignoring more types to compile

* initial rhino check in.  tabs on revit

* more fixes?

* rerun rhino

* more generic fixes

* more rhino fixes

* add interfaces to structs and explicit interfaces

* fix indexers and add exceptions

* Compiles!

* add more collections and better interface implementations

* add static properties on structs

* add static methods to structs

* Deal with out values and System.Drawing

* fmt

* fix up Revit to have old properties/methods

* rerun revit to be updated
2024-07-02 16:24:56 +01:00

77 lines
2.8 KiB
C#

namespace Rhino.Runtime;
public partial class PythonScript
{
public PythonScript() { }
public static Rhino.Runtime.PythonScript Create() => throw new System.NotImplementedException();
public static System.Reflection.Assembly[] RuntimeAssemblies() => throw new System.NotImplementedException();
public static void AddRuntimeAssembly(System.Reflection.Assembly assembly) =>
throw new System.NotImplementedException();
public virtual Rhino.Runtime.PythonCompiledCode Compile(System.String script) =>
throw new System.NotImplementedException();
public virtual System.Boolean ContainsVariable(System.String name) => throw new System.NotImplementedException();
public virtual System.Collections.Generic.IEnumerable<System.String> GetVariableNames() =>
throw new System.NotImplementedException();
public virtual System.Object GetVariable(System.String name) => throw new System.NotImplementedException();
public virtual void SetVariable(System.String name, System.Object value) =>
throw new System.NotImplementedException();
public virtual void SetIntellisenseVariable(System.String name, System.Object value) =>
throw new System.NotImplementedException();
public virtual void RemoveVariable(System.String name) => throw new System.NotImplementedException();
public virtual System.Object EvaluateExpression(System.String statements, System.String expression) =>
throw new System.NotImplementedException();
public virtual System.Boolean ExecuteFile(System.String path) => throw new System.NotImplementedException();
public virtual System.Boolean ExecuteFileInScope(System.String path) => throw new System.NotImplementedException();
public virtual System.Boolean ExecuteScript(System.String script) => throw new System.NotImplementedException();
public virtual System.String GetStackTraceFromException(System.Exception ex) =>
throw new System.NotImplementedException();
public virtual System.Object CreateTextEditorControl(
System.String script,
System.Action<System.String> helpcallback
) => throw new System.NotImplementedException();
public virtual void SetupScriptContext(System.Object doc) => throw new System.NotImplementedException();
public static System.String[] SearchPaths
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Action<System.String> Output
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Object ScriptContextDoc
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.Commands.Command ScriptContextCommand
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Int32 ContextId
{
get => throw new System.NotImplementedException();
set { }
}
}