diff --git a/componentsGrasshopper/Loads/LineTemperatureLoadDefine.cs b/componentsGrasshopper/Loads/LineTemperatureLoadDefine.cs index dc5812bcc..6c9f419b2 100644 --- a/componentsGrasshopper/Loads/LineTemperatureLoadDefine.cs +++ b/componentsGrasshopper/Loads/LineTemperatureLoadDefine.cs @@ -41,7 +41,7 @@ protected override void SolveInstance(IGH_DataAccess DA) // pass } - List vals = new List(); + List vals = new List(); if (!DA.GetDataList(2, vals)) { return; diff --git a/componentsGrasshopper/Loads/SurfaceTemperatureLoadDefine.cs b/componentsGrasshopper/Loads/SurfaceTemperatureLoadDefine.cs index d1e2b7be8..06adde911 100644 --- a/componentsGrasshopper/Loads/SurfaceTemperatureLoadDefine.cs +++ b/componentsGrasshopper/Loads/SurfaceTemperatureLoadDefine.cs @@ -33,7 +33,7 @@ protected override void SolveInstance(IGH_DataAccess DA) return; } - List vals = new List(); + List vals = new List(); if (!DA.GetDataList(1, vals)) { return; diff --git a/componentsGrasshopper/Loads/TopBotLocationValueDefine.cs b/componentsGrasshopper/Loads/TopBotLocationValueDefine.cs index 9db454136..c9ee3aa59 100644 --- a/componentsGrasshopper/Loads/TopBotLocationValueDefine.cs +++ b/componentsGrasshopper/Loads/TopBotLocationValueDefine.cs @@ -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);