Method | Description | |
---|---|---|
setNamedCameraComponent ( ) : System |
Each implementation of GH_Component must provide a public constructor without any arguments. Category represents the Tab in which the component will appear, Subcategory the panel. If you use non-existing tab or panel names, new tabs/panels will automatically be created.
|
Method | Description | |
---|---|---|
RegisterInputParams ( GH_Component pManager ) : void |
Registers all the input parameters for this component.
|
|
RegisterOutputParams ( GH_Component pManager ) : void |
Registers all the output parameters for this component.
|
|
SolveInstance ( IGH_DataAccess DA ) : void |
This is the method that actually does the work.
|
protected RegisterInputParams ( GH_Component pManager ) : void | ||
pManager | GH_Component | |
return | void |
protected RegisterOutputParams ( GH_Component pManager ) : void | ||
pManager | GH_Component | |
return | void |
protected SolveInstance ( IGH_DataAccess DA ) : void | ||
DA | IGH_DataAccess | The DA object can be used to retrieve data from input parameters and /// to store data in output parameters. |
return | void |