Eneroth3

Results 43 comments of Eneroth3
trafficstars

Expected behavior would be to throw a TypeError, possibly to implicitly convert the input point to a point3d as is done elsewhere in the API. In any case, we shouldn't...

```ruby # Works class Tool def draw(view) point1 = Geom::Point3d.new(0, 0, 0) point2 = Geom::Point3d.new(1.m, 0, 0) view.draw_line(point1, point2) end end Sketchup.active_model.select_tool(Tool.new) # Crashes SketchUp class Tool def draw(view) point1...

This isn't for temp entities but for modifying existing entities. A new way to draw to the view would work for drawing tools but not modifier tools. For a modifier...