Skip to content

Commit

Permalink
Add description
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Oscarsson committed Jul 10, 2020
1 parent 2c8a495 commit 0ab8fbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion componentsGrasshopper/Loads/LineLoadForce.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public LineLoadForce(): base("LineLoad.Force", "Force", "Creates a force line lo
protected override void RegisterInputParams(GH_InputParamManager pManager)
{
pManager.AddCurveParameter("Curve", "Curve", "Curve defining the line load.", GH_ParamAccess.item);
pManager.AddVectorParameter("StartForce", "StartForce", "StartForce.", GH_ParamAccess.item);
pManager.AddVectorParameter("StartForce", "StartForce", "StartForce. The start force will define the direction of the line load.", GH_ParamAccess.item);
pManager.AddVectorParameter("EndForce", "EndForce", "EndForce. Optional. If undefined LineLoad will be uniform with a force of StartForce.", GH_ParamAccess.item);
pManager[pManager.ParamCount - 1].Optional = true;
pManager.AddGenericParameter("LoadCase", "LoadCase", "LoadCase.", GH_ParamAccess.item);
Expand Down
2 changes: 1 addition & 1 deletion componentsGrasshopper/Loads/LineLoadMoment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public LineLoadMoment(): base("LineLoad.Moment", "Moment", "Creates a moment lin
protected override void RegisterInputParams(GH_InputParamManager pManager)
{
pManager.AddCurveParameter("Curve", "Curve", "Curve defining the line load.", GH_ParamAccess.item);
pManager.AddVectorParameter("StartForce", "StartForce", "StartForce (Moment).", GH_ParamAccess.item);
pManager.AddVectorParameter("StartForce", "StartForce", "StartForce (Moment). The start force will define the direction of the line load.", GH_ParamAccess.item);
pManager.AddVectorParameter("EndForce", "EndForce", "EndForce (Moment). Optional. If undefined LineLoad will be uniform with a force (moment) of StartForce.", GH_ParamAccess.item);
pManager[pManager.ParamCount - 1].Optional = true;
pManager.AddGenericParameter("LoadCase", "LoadCase", "LoadCase.", GH_ParamAccess.item);
Expand Down

0 comments on commit 0ab8fbe

Please sign in to comment.