class Microstation::Line

Public Instance Methods

length() click to toggle source
# File lib/microstation/line.rb, line 7
def length
  ole_obj.Length
end
vertices() click to toggle source
# File lib/microstation/line.rb, line 12
def vertices
  ole_obj.AsVertexList
  n = ole_obj.VerticesCount
  list = ole_obj.GetVertices
  list
end