Example #1
0
        public void TraceModelCreation()
        {
            var factory     = new HSSPipeProfileFactory();
            var hssProfiles = factory.AllProfiles().ToList();
            var model       = ElementCreation.DrawAllBeams(hssProfiles);

            model.ToGlTF();
        }
Example #2
0
        public void Setup()
        {
            var factory     = new HSSPipeProfileFactory();
            var hssProfiles = factory.AllProfiles().ToList();

            _model = ElementCreation.DrawAllBeams(hssProfiles);
            _json  = _model.ToJson();
        }
Example #3
0
        public void TraceModelCreation()
        {
            Validators.Validator.DisableValidationOnConstruction = true;
            var factory     = new HSSPipeProfileFactory();
            var hssProfiles = factory.AllProfiles().ToList();
            var model       = ElementCreation.DrawAllBeams(hssProfiles);

            model.ToJson(gatherSubElements: false);
        }