Difference between revisions of "Libs3D"

From GiderosMobile
 
Line 4: Line 4:
  
 
=== Description ===
 
=== Description ===
Various ways to make 3D in Gideros.
+
Various ways to 3D Gideros.
  
 
=== Gideros API ===
 
=== Gideros API ===
Gideros can work with 3D out of the box, using a '''Mesh''', a '''Viewport''' and some 3D '''matrices'''. Let's start here:
+
Gideros can work with 3D out of the box in various ways:
* '''[[Libs3D_Mesh|Mesh]]'''
+
* 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

Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.pngPlatform html5.pngPlatform winrt.pngPlatform win32.pngPlatform linux.png

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

3D_Plane