Skip to content

Commit

Permalink
GSAGH-513 - change restrain to restraint (#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
SandeepArup authored Jul 25, 2024
2 parents d64c941 + a4fe11a commit bd6e511
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions GsaGH/Components/1_Properties/EditBool6.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ protected override void RegisterInputParams(GH_InputParamManager pManager) {
protected override void RegisterOutputParams(GH_OutputParamManager pManager) {
pManager.AddParameter(new GsaBool6Parameter(), GsaBool6Goo.Name, GsaBool6Goo.NickName,
GsaBool6Goo.Description + " with applied changes.", GH_ParamAccess.item);
pManager.AddBooleanParameter("X", "X", "Release or restrain for translation in X-direction", GH_ParamAccess.item);
pManager.AddBooleanParameter("Y", "Y", "Release or restrain for translation in Y-direction", GH_ParamAccess.item);
pManager.AddBooleanParameter("Z", "Z", "Release or restrain for translation in Z-direction", GH_ParamAccess.item);
pManager.AddBooleanParameter("XX", "XX", "Release or restrain for rotation around X-axis", GH_ParamAccess.item);
pManager.AddBooleanParameter("YY", "YY", "Release or restrain for rotation around Y-axis", GH_ParamAccess.item);
pManager.AddBooleanParameter("ZZ", "ZZ", "Release or restrain for rotation around Z-axis", GH_ParamAccess.item);
pManager.AddBooleanParameter("X", "X", "Release or restraint for translation in X-direction", GH_ParamAccess.item);
pManager.AddBooleanParameter("Y", "Y", "Release or restraint for translation in Y-direction", GH_ParamAccess.item);
pManager.AddBooleanParameter("Z", "Z", "Release or restraint for translation in Z-direction", GH_ParamAccess.item);
pManager.AddBooleanParameter("XX", "XX", "Release or restraint for rotation around X-axis", GH_ParamAccess.item);
pManager.AddBooleanParameter("YY", "YY", "Release or restraint for rotation around Y-axis", GH_ParamAccess.item);
pManager.AddBooleanParameter("ZZ", "ZZ", "Release or restraint for rotation around Z-axis", GH_ParamAccess.item);
}

protected override void SolveInstance(IGH_DataAccess da) {
Expand Down

0 comments on commit bd6e511

Please sign in to comment.