@borg.stef said:
... and it gives me this error:
#<NoMethodError: undefined methodpoint3d' for Geom:Module>`
Because methods begin with lower case identifiers.
Class (and Module,) indentifiers are titlecase.
@borg.stef said:
How can i put a simple model in the required location? I did the following coding:
model = Sketchup.active_model pt = Geom::point3d.new(0,0,0) tr = Geom::Transformation.new(pt) model.transform!(tr)
The model origin is already at [0,0,0], and there is a constant ORIGIN for it.
So your code above does nothing.