GeometryBasics.jl icon indicating copy to clipboard operation
GeometryBasics.jl copied to clipboard

Better show methods for triangle faces

Open asinghvi17 opened this issue 5 years ago • 0 comments

Currently, the offset integers are shown using octal notation. Could we convert to decimal instead?

 TriangleFace(OffsetInteger{-1,UInt32}(0x0000003c), OffsetInteger{-1,UInt32}(0x0000003b), OffsetInteger{-1,UInt32}(0x0000003a))

could be be

 TriangleFace(OffsetInteger{-1,UInt32}(60), OffsetInteger{-1,UInt32}(59), OffsetInteger{-1,UInt32}(58))

or something.

asinghvi17 avatar Apr 20 '20 05:04 asinghvi17