Introduction To Programming 3D In TypeScript
bitbybit.dev logo

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.

Beginner
Free
TypeScript

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

Navigate freely between lectures by clicking on them. Approximate time required: 171 minutes.