|
Component_CroSecreadCroSecDataFromComponent Method (IGH_DataAccess, Double, ListString, Double, String, String, NullableColor, FemMaterial, NullableVector3d, String)
|
retrieve cross section data from component data
Namespace:
Karamba.GHopper.CrossSections
Assembly:
karambaGH (in karambaGH.dll) Version: 1.15.0.0 (1.15.0.0)
Syntaxpublic static void readCroSecDataFromComponent(
IGH_DataAccess DA,
double[] default_values,
out List<string> beam_ids,
out double[] in_params,
out string family,
out string name,
out Nullable<Color> color,
out FemMaterial material,
out Nullable<Vector3d> locecc,
out string msg
)
Public Shared Sub readCroSecDataFromComponent (
DA As IGH_DataAccess,
default_values As Double(),
<OutAttribute> ByRef beam_ids As List(Of String),
<OutAttribute> ByRef in_params As Double(),
<OutAttribute> ByRef family As String,
<OutAttribute> ByRef name As String,
<OutAttribute> ByRef color As Nullable(Of Color),
<OutAttribute> ByRef material As FemMaterial,
<OutAttribute> ByRef locecc As Nullable(Of Vector3d),
<OutAttribute> ByRef msg As String
)
public:
static void readCroSecDataFromComponent(
IGH_DataAccess^ DA,
array<double>^ default_values,
[OutAttribute] List<String^>^% beam_ids,
[OutAttribute] array<double>^% in_params,
[OutAttribute] String^% family,
[OutAttribute] String^% name,
[OutAttribute] Nullable<Color>% color,
[OutAttribute] FemMaterial^% material,
[OutAttribute] Nullable<Vector3d>% locecc,
[OutAttribute] String^% msg
)
static member readCroSecDataFromComponent :
DA : IGH_DataAccess *
default_values : float[] *
beam_ids : List<string> byref *
in_params : float[] byref *
family : string byref *
name : string byref *
color : Nullable<Color> byref *
material : FemMaterial byref *
locecc : Nullable<Vector3d> byref *
msg : string byref -> unit
Parameters
- DA
- Type: IGH_DataAccess
Grasshopper data access object - default_values
- Type: SystemDouble
default cross section dimensions - beam_ids
- Type: System.Collections.GenericListString
retrieved beam identifier - in_params
- Type: SystemDouble
retrieved cross section dimensions - family
- Type: SystemString
retrieved family name - name
- Type: SystemString
retrieved cross section name - color
- Type: SystemNullableColor
color to be used for coloring the cross section - material
- Type: Karamba.MaterialsFemMaterial
material to be used for the cross section or null - locecc
- Type: SystemNullableVector3d
vector of local eccentricity - msg
- Type: SystemString
eror message or ""
See Also