-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNTNU_SecondComponent.cs
More file actions
82 lines (76 loc) · 2.77 KB
/
NTNU_SecondComponent.cs
File metadata and controls
82 lines (76 loc) · 2.77 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
using System;
using System.Collections.Generic;
using Grasshopper.Kernel;
using Rhino.Geometry;
using NTNU_FirstPlugin;
namespace NTNU_FirstPlugin
{
public class NTNU_SecondComponent : GH_Component
{
/// <summary>
/// Initializes a new instance of the NTNU_SecondComponent class.
/// </summary>
public NTNU_SecondComponent()
: base("NTNU_SecondComponent", "Nickname",
"Description",
"NTNU", "Test")
{
}
/// <summary>
/// Registers all the input parameters for this component.
/// </summary>
protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
{
pManager.AddNumberParameter("number1","n1","first number",GH_ParamAccess.item);
pManager.AddNumberParameter("number2", "n2", "second number", GH_ParamAccess.item);
pManager.AddGenericParameter("something","s","something class object",GH_ParamAccess.item);
}
/// <summary>
/// Registers all the output parameters for this component.
/// </summary>
protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
{
pManager.AddNumberParameter("result", "r", "result number", GH_ParamAccess.item);
pManager.AddGenericParameter("something", "s", " ", GH_ParamAccess.item);
}
/// <summary>
/// This is the method that actually does the work.
/// </summary>
/// <param name="DA">The DA object is used to retrieve from inputs and store in outputs.</param>
protected override void SolveInstance(IGH_DataAccess DA)
{
double n1 = 0;
double n2 = 0;
ClassSomething something = new ClassSomething();
DA.GetData(0, ref n1);
DA.GetData(1, ref n2);
DA.GetData(2, ref something);
something.width = n1;
something.height = n2;
double r = NTNU_methods.giveMeSum(n1,n2);
DA.SetData(0, r);
DA.SetData(1, something);
}
/// <summary>
/// Provides an Icon for the component.
/// </summary>
/*
protected override System.Drawing.Bitmap Icon
{
get
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
}
}
*/
/// <summary>
/// Gets the unique ID for this component. Do not change this ID after release.
/// </summary>
public override Guid ComponentGuid
{
get { return new Guid("5FEFC804-475F-40D0-A9AA-DB076E0F2C10"); }
}
}
}