model3d
¶
model3d
is a JITX statement that defines a 3D model associated with a pcb-landpattern
definition.
Syntax¶
; inside pcb-landpattern :
model3d = Model3D(filename, position, scale, rotation) where :
val filename = "my-3d-model.wrl"
val position = Vec3D(0.0, 0.0, 0.0)
val scale = Vec3D(0.0, 0.0, 0.0)
val rotation = Vec3D(0.0, 0.0, 0.0)
Description¶
The model3d
statement associates a 3D model with a pcb-landpattern
. Models may be .stp
, .step
, or .wrl
files. The arguments to Model3D
are the name of the 3D model file, and 3D vectors for position/translation, scale, and rotation.
The filename
argument may be a relative or absolute path. If it is relative, the resolved path will be relative to the directory of the source file that contains the statement. If it is started with ${PROJECT_ROOT}
(e.g. ${PROJECT_ROOT}/3DModels/model.step
), the resolved path will be relative to the project root directory.
For example :
;in project/landpatterns/landpattern.stanza
;...
model3d = Model3D("../3DModels/model.step")
The resolved path will be project/3DModels/model.step
.
During import, imported model files are placed in the imported design directory under <imported-design>/3d-models
and model3d
statements are generated automatically.