plunkerでopenjscad その5
927 ワード
概要
plunkerでopenjscadやってみる。
setcolor使ってみた。
写真
サンプルコード
function main() {
var cube1 = CSG.cube({
radius: 10
});
cube1 = cube1.setColor([0.8, 0, 0]);
var cube2 = CSG.cube({
radius: 10
});
cube2 = cube2.setColor([0, 0.8, 0]);
cube2 = cube2.translate([5, 1, 4]);
var result = cube1.subtract(cube2);
return result;
}
成果物
function main() {
var cube1 = CSG.cube({
radius: 10
});
cube1 = cube1.setColor([0.8, 0, 0]);
var cube2 = CSG.cube({
radius: 10
});
cube2 = cube2.setColor([0, 0.8, 0]);
cube2 = cube2.translate([5, 1, 4]);
var result = cube1.subtract(cube2);
return result;
}
以上。
Author And Source
この問題について(plunkerでopenjscad その5), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/4f3c30e3c6a8f4bda279著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .