|
offset(surface, length, boolean)
: Surface
Creates an offset surface. Set
orientation boolean to false to change the side of the created
surface regarding the reference
surface.
Example
Open_body.1\Surface.2=
offset(Open_body.1\Sweep.1, 10mm, false)
|
|
|
assemble(surface, ...) : Surface
Creates a join of several surfaces.
Example
Open_body.1\Surface.2=
assemble(Open_body.1\Sweep.1, Open_body.1\Sweep.2, Open_body.1\Offset.2)
|
|
|
split(surface, surface, boolean) :
Surface
Creates a split of one surface by another. Use
the third argument to choose the side to keep.
Example
Open_body.1\Surface.2=
split(Open_body.1\Sweep.1, Open_body.1\Sweep.2, true)
|
|
|
split(surface, curve, boolean) :
Surface
Creates a split of one surface by a curve. Use
the third argument to choose the side to keep.
Example
Open_body.1\Surface.2=
split(Open_body.1\Sweep.1, Open_body.1\Curve.2, true)
|
|
|
trim(surface, boolean, surface, boolean)
: Surface
Creates a trim of one surface by another. Use
the Booleans to choose the side to keep on each surface.
Example
Open_body.1\Surface.2=
trim(Open_body.1\Sweep.1, false, Open_body.1\Sweep.2, true)
|
|
|
near(surface, wireframe) : Surface
Extracts a connex sub element of a non connex entity which is
the nearest from another element.
Example
Open_body.1\Surface.2=
near(Open_body.1\Sweep.1, point(0mm,50mm,0))
|
|
|
extrude(curve, direction, length, length,
boolean) : Surface
Extrudes a wireframe profile in a given direction.
Example
Open_body.1\Surface.2=
extrude(Open_body.1\Sketch.1, direction(1,0,0), 0mm, 50mm, true)
|
|
|
extrude(surface, direction, length,
length, boolean) : Surface
Extrudes a surface in a given direction. The result is the
skin of the generated volume.
Example
Open_body.1\Surface.2=
extrude(Open_body.1\Surface.1, direction(1,0,0), 0mm, 50mm, true)
|
|
|
revolve(curve, line, angle, angle)
: Surface
Revolves a wireframe profile around a given axis.
Example
Open_body.1\Surface.2=
revolve(Open_body.1\Sketch.1, Open_body.1\Line.1, 0deg, 90deg)
|
|
|
revolve(surface, line, angle, angle)
: Surface
Revolves a surface around a given axis. The result is the
skin of the generated volume.
Example
Open_body.1\Surface.2=
revolve(Open_body.1\Surface.1, Open_body.1\Line.1, 0deg, 90deg)
|
|
|
loft(sections: list, orientations: list)
Creates a loft from several sections.
Example
Open_body.1\Surface.2=
loft(List(Open_body.1\Sketch.1,Open_body.1\Sketch.2), List(1,1))
|
|
|
loft(sections: list, orientations: list,
guides: list)
|
Creates a loft from several sections and several guides.
Example
Open_body.1\Surface.2=
loft(List(Open_body.1\Sketch.1,Open_body.1\Sketch.2), List(1,1),
List(Open_body.1\Line.1,
Open_body.1\Line.2))
|
|