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);
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);