hypar-io / Elements

The smallest useful BIM.
https://www.hypar.io
MIT License
354 stars 74 forks source link

The enum for WideFlangeProfileType is in the incorrect namespace #950

Open brettburling opened 1 year ago

brettburling commented 1 year ago

Describe the bug The enum for WideFlangeProfileType is in the Elements.Geometry namespace, expect it to be in Elements.Geometry.Profiles similar to the other profile types

To Reproduce Steps to reproduce the behaviour: Create a profile factory var factory = new Elements.Geometry.Profiles.WideFlangeProfileFactory();

Get a profile by type var profile= factory.GetProfileByType(Elements.Geometry.WideFlangeProfileType.W10x100);

Expected behaviour Create a profile factory var factory = new Elements.Geometry.Profiles.WideFlangeProfileFactory();

Get a profile by type var profile= factory.GetProfileByType(Elements.Geometry.Profiles.WideFlangeProfileType.W10x100);