
Convert cylindrical to cartesian coordinates
In this example, you will learn how to use a coordinate transformation to create a cylindrical 3D model. The transformation that we will...

Convert spherical to cartesian coordinates
Coordinate transformations play a crucial role in various fields, and can also be very powerful for 3D modeling. One common...

Offset triangular mesh
Offsetting a triangular mesh refers to a 3D geometric operation where a secondary mesh is created at a uniform distance from the original...

Perform boolean operations on surfaces
Boolean operations on surfaces are fundamental techniques used in 3D modeling. These operations allow designers and engineers to...

Create spline through points
Discover how to create a spline through points with a few lines of Python code. In this example, we start by defining an array...

Sweep profile along a path
Learn how to sweep a profile along a path with only a few lines of Python code. Creating a 3D model through sweeping is a powerful method...

Merge meshes
In this example, you will learn how to merge multiple meshes into a single mesh. This operation can be useful when creating 3D models. To...

Mesh clipping
In this example, you will learn how to perform mesh clipping using a plane . Mesh clipping is a technique in 3D modeling that divides a...

Extrude mesh
In this example, you will learn how to generate 3D models by extruding a mesh. We will demonstrate how to create a cuboid made up of...

Visualize a 3D scalar field
This example demonstrates how to use HelloTriangle to visualize a 3D scalar field on a mesh (in this case a triangulated surface)....

Translate, rotate and scale 3D models
In this example, you will learn how to translate, rotate and scale your 3D models. These basic transformations are frequently needed when...