Files
modeling-app/rust/kcl-lib/tests/multiple-foreign-imports-all-render/input.kcl

23 lines
393 B
Plaintext
Raw Normal View History

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
)