23 lines
393 B
Plaintext
23 lines
393 B
Plaintext
![]() |
import "../inputs/cube.step" as cube
|
||
|
import "othercube.kcl" as othercube
|
||
|
import "anothercube.kcl" as anothercube
|
||
|
|
||
|
model = cube
|
||
|
|
||
|
othercube
|
||
|
|> translate(x=1020)
|
||
|
|> appearance(
|
||
|
color = "#ff001f",
|
||
|
metalness = 50,
|
||
|
roughness = 50
|
||
|
)
|
||
|
|
||
|
anothercube
|
||
|
|> translate(x=-1020)
|
||
|
|> appearance(
|
||
|
color = "#ff0000",
|
||
|
metalness = 50,
|
||
|
roughness = 50
|
||
|
)
|
||
|
|