Skip to content

Commit

Permalink
Fix namespace issue
Browse files Browse the repository at this point in the history
  • Loading branch information
andosca committed Sep 11, 2020
1 parent 5dd3361 commit 5fa282a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion componentsGrasshopper/Loads/LineTemperatureLoadDefine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected override void SolveInstance(IGH_DataAccess DA)
// pass
}

List<TopBotLocationValue> vals = new List<TopBotLocationValue>();
List<Loads.TopBotLocationValue> vals = new List<Loads.TopBotLocationValue>();
if (!DA.GetDataList(2, vals))
{
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protected override void SolveInstance(IGH_DataAccess DA)
return;
}

List<TopBotLocationValue> vals = new List<TopBotLocationValue>();
List<Loads.TopBotLocationValue> vals = new List<Loads.TopBotLocationValue>();
if (!DA.GetDataList(1, vals))
{
return;
Expand Down
2 changes: 1 addition & 1 deletion componentsGrasshopper/Loads/TopBotLocationValueDefine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected override void SolveInstance(IGH_DataAccess DA)
Geometry.FdPoint3d p = Geometry.FdPoint3d.FromRhino(point);

// create obj
TopBotLocationValue obj = new TopBotLocationValue(p, topVal, bottomVal);
Loads.TopBotLocationValue obj = new Loads.TopBotLocationValue(p, topVal, bottomVal);

// return
DA.SetData(0, obj);
Expand Down

0 comments on commit 5fa282a

Please sign in to comment.