-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRhinoPythonShellCommand.cs
39 lines (35 loc) · 1.05 KB
/
RhinoPythonShellCommand.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using Rhino;
using Rhino.Commands;
using Rhino.Geometry;
using Rhino.Input;
using Rhino.Input.Custom;
namespace RhinoPythonShell
{
public class RhinoPythonShellCommand : Command
{
public RhinoPythonShellCommand()
{
// Rhino only creates one instance of each command class defined in a
// plug-in, so it is safe to store a refence in a static property.
Instance = this;
}
///<summary>The only instance of this command.</summary>
public static RhinoPythonShellCommand Instance
{
get; private set;
}
///<returns>The command name as it appears on the Rhino command line.</returns>
public override string EnglishName
{
get { return "rhinoPythonShell"; }
}
protected override Result RunCommand(RhinoDoc doc, RunMode mode)
{
var PythonShell = new MainWindow();
PythonShell.Show();
return Result.Success;
}
}
}