Exemple #1
0
 public HB.Face ToHoneybee()
 {
     return(new HB.Face(
                Identifier,
                Geometry.ToHoneybee(),
                FaceType,
                new HB.AnyOf <HB.Ground, HB.Outdoors, HB.Adiabatic, HB.Surface>(BoundaryCondition.ToHoneybee()),
                Properties,
                DisplayName,
                null, // user data
                Apertures?.Select(x => x.ToHoneybee()).ToList(),
                Doors.Select(x => x.ToHoneybee()).ToList(),
                null, // indoor shades
                null  // outdoor shades
                ));
 }