Difference between revisions of "Libs3D"
From GiderosMobile
| Line 4: | Line 4: | ||
=== Description === | === Description === | ||
| − | Various ways to | + | Various ways to 3D Gideros. |
=== Gideros API === | === Gideros API === | ||
| − | Gideros can work with 3D out of the box | + | Gideros can work with 3D out of the box in various ways: |
| − | + | * setting the '''Application''' configureFrustum | |
| + | * using '''3D Matrix''' | ||
| + | * setting the '''Matrix Projection''' (orthographic/perspective) | ||
| + | * using a '''Mesh''' | ||
| + | * setting a '''Viewport''' projection matrix | ||
| + | |||
| + | Let's explore all this here: '''[[Libs3D_Mesh|Basic Gideros 3D]]''' | ||
=== '''WIP''' === | === '''WIP''' === | ||
Latest revision as of 03:24, 23 January 2026
Description
Various ways to 3D Gideros.
Gideros API
Gideros can work with 3D out of the box in various ways:
- setting the Application configureFrustum
- using 3D Matrix
- setting the Matrix Projection (orthographic/perspective)
- using a Mesh
- setting a Viewport projection matrix
Let's explore all this here: Basic Gideros 3D
WIP