three_dart 0.0.2 copy "three_dart: ^0.0.2" to clipboard
three_dart: ^0.0.2 copied to clipboard

outdated

three.js implement by Dart.

three_dart #

three.js rewrite by Dart. 3D for Flutter. Base on flutter_gl

Metaverse with Flutter?

support Web, iOS, Android, macOS, Windows

Linux TODO, need flutter_gl support

three.js r130

Example Demo on flutter web https://wasabia.github.io/three_dart/#/

Getting Started #

First at all. Follow flutter_gl Usage flutter_gl

TODO

Usage #

check example project

camera = new THREE.PerspectiveCamera( 40, 1, 0.1, 10 );
camera.position.z = 3;

scene = new THREE.Scene();
camera.lookAt(scene.position);

scene.background = THREE.Color(1.0, 1.0, 1.0);
scene.add( new THREE.AmbientLight( 0x222244, null ) );

var geometryCylinder = new THREE.CylinderGeometry( 0.5, 0.5, 1, 32 );
var materialCylinder = new THREE.MeshPhongMaterial( { "color": 0xff0000 } );

mesh = new THREE.Mesh( geometryCylinder, materialCylinder );
scene.add( mesh );

Example #

cd example && flutter run

3

TODO #

  • unit test
  • more example
  • README && Document
  • and so on...

Issues #

File any issues, bugs, or feature requests.

Contributing #

Pull request please!

Libraries and Plugins #

https://github.com/wasabia/three_dart_jsm

https://github.com/wasabia/opentype

https://github.com/wasabia/typr_dart

188
likes
0
pub points
87%
popularity

Publisher

unverified uploader

three.js implement by Dart.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

ffi, flutter, flutter_gl, http, image, universal_html

More

Packages that depend on three_dart