File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ def get_properties(entity)
129
129
definition = entity . definition
130
130
ifc_type = definition . get_attribute "AppliedSchemaTypes" , "IFC 2x3"
131
131
if ifc_type
132
- properties [ "Class" ] = ifc_type
132
+ properties [ "Class" ] = ifc_type [ 3 ..- 1 ]
133
133
if definition . attribute_dictionaries [ 'IFC 2x3' ]
134
134
if props_ifc = definition . attribute_dictionaries [ 'IFC 2x3' ] . attribute_dictionaries
135
135
props_ifc . each do |prop_dict |
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ def initialize( faces, transformation )
54
54
end # def initialize
55
55
56
56
def to_s ( )
57
- return @vertices . join ( "\\ n" ) << "\\ n" << @polygons . join ( "\ \ n" )
57
+ return @vertices . join ( "\n " ) << "\n " << @polygons . join ( "\n " )
58
58
end
59
59
end # OBJ
60
60
end # module IfcJson
You can’t perform that action at this time.
0 commit comments