3D Modeling with Code! The best demo (OpenSCAD)

3D Modeling with Code! The best demo (OpenSCAD)

MostlyBuilds

11 месяцев назад

17,468 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@MostlyBuilds
@MostlyBuilds - 05.10.2023 06:33

FYI, use union() instead of group(). It was brought to my attention that group() is an older API that likely just aliases union().

Ответить
@Light_Akira
@Light_Akira - 02.02.2024 23:56

it is so cool to be a developer!

Ответить
@JohnPatersonAu
@JohnPatersonAu - 29.01.2024 01:29

Great vid! You are a natural teacher. 👍👍

Ответить
@JonathanYankovich
@JonathanYankovich - 22.01.2024 02:18

Great video! Man, I really wish OpenSCAD had an Elixir-style "pipe" operator.

Ответить
@americancolor2
@americancolor2 - 27.12.2023 23:01

Hey man! I think iam doing something wrong. Can you help me to understand what iam doing wrong if i send you screenshot? Thansk à lot!

Ответить
@shakejones
@shakejones - 20.12.2023 03:11

Great video+explanation+presentation! Well done mate - NEW SUB 🙏🏻

Ответить
@Mike-lu1pt
@Mike-lu1pt - 18.12.2023 06:20

so much work for such a simple shape

Ответить
@fastbike9845
@fastbike9845 - 21.09.2023 12:29

Very nice, you made the process seamless.
How would I go about adding a chamfer along the top ?

Ответить
@banalestorchid5814
@banalestorchid5814 - 12.09.2023 19:37

That was awesome, thanks for that!

Ответить
@davidrgilson
@davidrgilson - 07.09.2023 18:50

Scad looks great for my next project - more tutorials would ber great. Currently trying to do this kind of thing with geometry nodes in Blender.

Ответить
@Kilakro
@Kilakro - 05.09.2023 07:01

I just recently learned about this software, the code reminds me of Python and isn't intimidating at all. I was worried that it would look like C or C++ being an open source project.

Ответить
@JernD
@JernD - 10.08.2023 19:18

Nice video! I reimplemented it in build123d (a different type of CodeCAD that uses python and has built-in functions like fillet/chamfer). Here is the source code in build123d:
from build123d import *
with BuildPart() as p:
with BuildSketch() as s:
RectangleRounded(43.25,43.25,5)
extrude(amount=-35)
with BuildSketch() as s2:
RectangleRounded(43.25+8,43.25+8,5)
extrude(amount=5)
Hole(38.5/2)

Ответить