Skip to content

Commit d2df81b

Browse files
committed
another version bump
1 parent 00336f8 commit d2df81b

File tree

100 files changed

+760
-72
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+760
-72
lines changed

Columns/ColumnsByFloors/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@ Creates a grid of columns on each floor with the central intervals spanning the
1818
|---|---|---|
1919
|Column Quantity|Number|Total quantity of columns.|
2020

21+
22+
<br>
23+
24+
## Additional Information

Columns/ColumnsByFloors/src/ColumnsByFloors.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<ItemGroup>
33
<PackageReference Include="GeometryEx" Version="6.10.0" />
4-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
4+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
55
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
66
</ItemGroup>
77

Columns/ColumnsByFloors/src/Function.g.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task<ColumnsByFloorsOutputs> Handler(ColumnsByFloorsInputs args, IL
6262

6363
if(this.store == null)
6464
{
65-
this.store = new S3ModelStore<ColumnsByFloorsInputs>(RegionEndpoint.USWest1);
65+
this.store = new S3ModelStore<ColumnsByFloorsInputs>(RegionEndpoint.GetBySystemName("us-west-1"));
6666
}
6767

6868
var l = new InvocationWrapper<ColumnsByFloorsInputs,ColumnsByFloorsOutputs>(store, ColumnsByFloors.Execute);

Columns/ColumnsFromGrid/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@ Create Columns from a grid.
1818
|Output Name|Type|Description|
1919
|---|---|---|
2020

21+
22+
<br>
23+
24+
## Additional Information

Columns/ColumnsFromGrid/dependencies/ColumnsFromGrid.Dependencies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
8+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
99
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
1010
</ItemGroup>
1111

Core/CoreByEnvelope/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,7 @@ Creates a building service core representation derived from the envelope footpri
2020
|Service Core Width|Number|Width of the service core.|
2121
|Service Core Rotation|Number|Rotation of the service core.|
2222

23+
24+
<br>
25+
26+
## Additional Information

Core/CoreByEnvelope/dependencies/CoreByEnvelope.Dependencies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
8+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
99
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
1010
</ItemGroup>
1111

Core/CoreByEnvelope/src/Function.g.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task<CoreByEnvelopeOutputs> Handler(CoreByEnvelopeInputs args, ILam
6262

6363
if(this.store == null)
6464
{
65-
this.store = new S3ModelStore<CoreByEnvelopeInputs>(RegionEndpoint.USWest1);
65+
this.store = new S3ModelStore<CoreByEnvelopeInputs>(RegionEndpoint.GetBySystemName("us-west-1"));
6666
}
6767

6868
var l = new InvocationWrapper<CoreByEnvelopeInputs,CoreByEnvelopeOutputs>(store, CoreByEnvelope.Execute);

Core/CoreByLevels/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@ Creates a building core by referencing LevelPerimeters supplied by another funct
1717
|Restrooms|Number|Restroom quantity.|
1818
|Lifts|Number|Lift quantity.|
1919

20+
21+
<br>
22+
23+
## Additional Information

Core/CoreByLevels/dependencies/CoreByLevels.Dependencies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
8+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
99
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
1010
</ItemGroup>
1111

Core/CoreByLevels/src/Function.g.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public async Task<CoreByLevelsOutputs> Handler(CoreByLevelsInputs args, ILambdaC
3535
// deserialization.
3636
var asmName = Path.GetFileNameWithoutExtension(asmLocation);
3737
var depPath = Path.Combine(asmDir, $"{asmName}.Dependencies.dll");
38-
if (File.Exists(depPath))
38+
if(File.Exists(depPath))
3939
{
4040
Console.WriteLine($"Loading dependencies assembly from: {depPath}...");
4141
Assembly.LoadFrom(depPath);
@@ -60,14 +60,14 @@ public async Task<CoreByLevelsOutputs> Handler(CoreByLevelsInputs args, ILambdaC
6060
sw.Stop();
6161
Console.WriteLine($"Time to load assemblies: {sw.Elapsed.TotalSeconds})");
6262

63-
if (this.store == null)
63+
if(this.store == null)
6464
{
65-
this.store = new S3ModelStore<CoreByLevelsInputs>(RegionEndpoint.USWest1);
65+
this.store = new S3ModelStore<CoreByLevelsInputs>(RegionEndpoint.GetBySystemName("us-west-1"));
6666
}
6767

68-
var l = new InvocationWrapper<CoreByLevelsInputs, CoreByLevelsOutputs>(store, CoreByLevels.Execute);
68+
var l = new InvocationWrapper<CoreByLevelsInputs,CoreByLevelsOutputs>(store, CoreByLevels.Execute);
6969
var output = await l.InvokeAsync(args);
7070
return output;
7171
}
72-
}
72+
}
7373
}

Core/CoreBySketch/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ Creates the volume of a building service core by extruding a sketch to a height
1616
|---|---|---|
1717
|Height|Number|Height of the service core.|
1818

19+
20+
<br>
21+
22+
## Additional Information

Core/CoreBySketch/dependencies/CoreBySketch.Dependencies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
8+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
99
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
1010
</ItemGroup>
1111

Core/CoreBySketch/src/Function.g.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task<CoreBySketchOutputs> Handler(CoreBySketchInputs args, ILambdaC
6262

6363
if(this.store == null)
6464
{
65-
this.store = new S3ModelStore<CoreBySketchInputs>(RegionEndpoint.USWest1);
65+
this.store = new S3ModelStore<CoreBySketchInputs>(RegionEndpoint.GetBySystemName("us-west-1"));
6666
}
6767

6868
var l = new InvocationWrapper<CoreBySketchInputs,CoreBySketchOutputs>(store, CoreBySketch.Execute);

EmergencyEgress/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ The Emergency Egress function.
1414
|Output Name|Type|Description|
1515
|---|---|---|
1616

17+
18+
<br>
19+
20+
## Additional Information

EmergencyEgress/dependencies/EmergencyEgress.Dependencies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
8+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
99
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
1010
</ItemGroup>
1111

EmergencyEgress/dependencies/SpaceBoundary.g.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace Elements
2727
public partial class SpaceBoundary : GeometricElement
2828
{
2929
[JsonConstructor]
30-
public SpaceBoundary(Profile @boundary, IList<Polygon> @cells, double @area, double? @length, double? @depth, double @height, string @programGroup, string @programType, System.Guid? @level, System.Guid? @levelLayout, Transform @transform = null, Material @material = null, Representation @representation = null, bool @isElementDefinition = false, System.Guid @id = default, string @name = null)
30+
public SpaceBoundary(Profile @boundary, IList<Polygon> @cells, double @area, double? @length, double? @depth, double @height, string @programGroup, string @programType, System.Guid? @level, System.Guid? @levelLayout, string @hyparSpaceType, Transform @transform = null, Material @material = null, Representation @representation = null, bool @isElementDefinition = false, System.Guid @id = default, string @name = null)
3131
: base(transform, material, representation, isElementDefinition, id, name)
3232
{
3333
this.Boundary = @boundary;
@@ -40,6 +40,7 @@ public SpaceBoundary(Profile @boundary, IList<Polygon> @cells, double @area, dou
4040
this.ProgramType = @programType;
4141
this.Level = @level;
4242
this.LevelLayout = @levelLayout;
43+
this.HyparSpaceType = @hyparSpaceType;
4344
}
4445

4546
// Empty constructor
@@ -87,6 +88,10 @@ public SpaceBoundary()
8788
[JsonProperty("Level Layout", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
8889
public System.Guid? LevelLayout { get; set; }
8990

91+
/// <summary>The hypar-recognized space type name which will be used to determine which layout function to apply. In older space boundaries, this may not be set — fall back to the Name property for this purpose if not provided.</summary>
92+
[JsonProperty("Hypar Space Type", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
93+
public string HyparSpaceType { get; set; }
94+
9095

9196
}
9297
}

EmergencyEgress/src/Function.g.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task<EmergencyEgressOutputs> Handler(EmergencyEgressInputs args, IL
6262

6363
if(this.store == null)
6464
{
65-
this.store = new S3ModelStore<EmergencyEgressInputs>(RegionEndpoint.USWest1);
65+
this.store = new S3ModelStore<EmergencyEgressInputs>(RegionEndpoint.GetBySystemName("us-west-1"));
6666
}
6767

6868
var l = new InvocationWrapper<EmergencyEgressInputs,EmergencyEgressOutputs>(store, EmergencyEgress.Execute);

Envelope/EnvelopeByCenterline/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,7 @@ Creates building Envelope elements derived from a polyline centerline sketch, wi
1919
|Height|Number|Height of the building.|
2020
|Subgrade|Number|Depth of the subgrade section.|
2121

22+
23+
<br>
24+
25+
## Additional Information

Envelope/EnvelopeByCenterline/dependencies/EnvelopeByCenterline.Dependencies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
8+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
99
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
1010
</ItemGroup>
1111

Envelope/EnvelopeByCenterline/src/Function.g.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task<EnvelopeByCenterlineOutputs> Handler(EnvelopeByCenterlineInput
6262

6363
if(this.store == null)
6464
{
65-
this.store = new S3ModelStore<EnvelopeByCenterlineInputs>(RegionEndpoint.USWest1);
65+
this.store = new S3ModelStore<EnvelopeByCenterlineInputs>(RegionEndpoint.GetBySystemName("us-west-1"));
6666
}
6767

6868
var l = new InvocationWrapper<EnvelopeByCenterlineInputs,EnvelopeByCenterlineOutputs>(store, EnvelopeByCenterline.Execute);

Envelope/EnvelopeBySite/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,7 @@ Creates an Envelope from a Site boundary supplied by another function.
2222
|Height|Number|Height of the building.|
2323
|Subgrade|Number|Depth of the subgrade section.|
2424

25+
26+
<br>
27+
28+
## Additional Information

Envelope/EnvelopeBySite/dependencies/EnvelopeBySite.Dependencies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
8+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
99
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
1010
</ItemGroup>
1111

Envelope/EnvelopeBySite/src/Function.g.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task<EnvelopeBySiteOutputs> Handler(EnvelopeBySiteInputs args, ILam
6262

6363
if(this.store == null)
6464
{
65-
this.store = new S3ModelStore<EnvelopeBySiteInputs>(RegionEndpoint.USWest1);
65+
this.store = new S3ModelStore<EnvelopeBySiteInputs>(RegionEndpoint.GetBySystemName("us-west-1"));
6666
}
6767

6868
var l = new InvocationWrapper<EnvelopeBySiteInputs,EnvelopeBySiteOutputs>(store, EnvelopeBySite.Execute);

Envelope/EnvelopeBySketch/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,7 @@ Creates building Envelope elements derived from a polygon sketch and setback set
2222
|Height|Number|Height of the building.|
2323
|Subgrade|Number|Depth of the subgrade section.|
2424

25+
26+
<br>
27+
28+
## Additional Information

Envelope/EnvelopeBySketch/dependencies/EnvelopeBySketch.Dependencies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
8+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
99
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
1010
</ItemGroup>
1111

Envelope/EnvelopeBySketch/dependencies/LevelVolume.g.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace Elements
2727
public partial class LevelVolume : GeometricElement
2828
{
2929
[JsonConstructor]
30-
public LevelVolume(Profile @profile, double @height, double @area, string @buildingName, System.Guid? @level, System.Guid? @mass, Transform @transform = null, Material @material = null, Representation @representation = null, bool @isElementDefinition = false, System.Guid @id = default, string @name = null)
30+
public LevelVolume(Profile @profile, double @height, double @area, string @buildingName, System.Guid? @level, System.Guid? @mass, System.Guid? @planView, Transform @transform = null, Material @material = null, Representation @representation = null, bool @isElementDefinition = false, System.Guid @id = default, string @name = null)
3131
: base(transform, material, representation, isElementDefinition, id, name)
3232
{
3333
this.Profile = @profile;
@@ -36,6 +36,7 @@ public LevelVolume(Profile @profile, double @height, double @area, string @build
3636
this.BuildingName = @buildingName;
3737
this.Level = @level;
3838
this.Mass = @mass;
39+
this.PlanView = @planView;
3940
}
4041

4142
// Empty constructor
@@ -68,6 +69,10 @@ public LevelVolume()
6869
[JsonProperty("Mass", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
6970
public System.Guid? Mass { get; set; }
7071

72+
/// <summary>The default plan view for this level</summary>
73+
[JsonProperty("Plan View", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
74+
public System.Guid? PlanView { get; set; }
75+
7176

7277
}
7378
}

Envelope/EnvelopeBySketch/src/Function.g.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task<EnvelopeBySketchOutputs> Handler(EnvelopeBySketchInputs args,
6262

6363
if(this.store == null)
6464
{
65-
this.store = new S3ModelStore<EnvelopeBySketchInputs>(RegionEndpoint.USWest1);
65+
this.store = new S3ModelStore<EnvelopeBySketchInputs>(RegionEndpoint.GetBySystemName("us-west-1"));
6666
}
6767

6868
var l = new InvocationWrapper<EnvelopeBySketchInputs,EnvelopeBySketchOutputs>(store, EnvelopeBySketch.Execute);

Facade/FacadeByEnvelope/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,7 @@ Creates a Facade for an Envelope.
1919
|---|---|---|
2020
|Panel Quantity|Number|Total facade panels.|
2121

22+
23+
<br>
24+
25+
## Additional Information

Facade/FacadeByEnvelope/dependencies/FacadeByEnvelope.Dependencies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
8+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
99
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
1010
</ItemGroup>
1111

Facade/FacadeByEnvelope/src/Function.g.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task<FacadeByEnvelopeOutputs> Handler(FacadeByEnvelopeInputs args,
6262

6363
if(this.store == null)
6464
{
65-
this.store = new S3ModelStore<FacadeByEnvelopeInputs>(RegionEndpoint.USWest1);
65+
this.store = new S3ModelStore<FacadeByEnvelopeInputs>(RegionEndpoint.GetBySystemName("us-west-1"));
6666
}
6767

6868
var l = new InvocationWrapper<FacadeByEnvelopeInputs,FacadeByEnvelopeOutputs>(store, FacadeByEnvelope.Execute);

Floors/FloorsByDXF/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ The FloorsByDXF function.
1616
|---|---|---|
1717
|Volume|Number|The volume.|
1818

19+
20+
<br>
21+
22+
## Additional Information

Floors/FloorsByDXF/dependencies/FloorsByDXF.Dependencies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
8+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
99
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
1010
</ItemGroup>
1111

Floors/FloorsByDXF/src/Function.g.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task<FloorsByDXFOutputs> Handler(FloorsByDXFInputs args, ILambdaCon
6262

6363
if(this.store == null)
6464
{
65-
this.store = new S3ModelStore<FloorsByDXFInputs>(RegionEndpoint.USWest1);
65+
this.store = new S3ModelStore<FloorsByDXFInputs>(RegionEndpoint.GetBySystemName("us-west-1"));
6666
}
6767

6868
var l = new InvocationWrapper<FloorsByDXFInputs,FloorsByDXFOutputs>(store, FloorsByDXF.Execute);

Floors/FloorsByLevels/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@ Creates floors from level perimeters supplied by another function.
1717
|Total Area|Number|Aggregate area of all floors.|
1818
|Floor Quantity|Number|Quantity of floors.|
1919

20+
21+
<br>
22+
23+
## Additional Information

Floors/FloorsByLevels/dependencies/FloorsByLevels.Dependencies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Hypar.Elements" Version="1.3.0" />
8+
<PackageReference Include="Hypar.Elements" Version="1.4.0" />
99
<PackageReference Include="Hypar.Functions" Version="1.3.0" />
1010
</ItemGroup>
1111

0 commit comments

Comments
 (0)