Introduction To Programming 3D In TypeScript

We made this course for people interested in creating parametric geometry and 3D models in TypeScript programming language. Follow these lecture series to understand how things work and how to achieve your goals.

Made For Beginners
Free
TypeScript
Image showing TypeScript coding editor

Hello World

In this lecture we will show how to create a very simple program that outputs Hello World in 3D letters.

First thing you should do is open up TypeScript Editor called Monaco.

The Code

This is the code that you should copy and paste into the editor. You can also type it in yourself. The code is explained in the video.

const start = async () => { const options = new Bit.Advanced.Text3D.Text3DDto(); options.text = "Hello World!"; const text = await bitbybit.advanced.text3d.create(options); bitbybit.draw.drawAnyAsync({ entity: text }); } start();
< OverviewNext >

Course lectures

These are all the lectures of the course. Navigate freely between them by clicking.

Approximate Time Required: 171 minutes