Coder Social home page Coder Social logo

three's Introduction

three

three.js wrapper for GopherJS or WASM

This 'Go' code wrapper generated from Typedoc JSON.

Re Generate

cd internal/generate
git -C three.js checkout r104
make

USAGE

JavaScript GopherJS
new THREE.XxxxYyyy() three.NewXxxxYyyy()
camera.position = new THREE.Vector3(0, 0, 0) camera.SetPosition(three.NewVector3(0, 0, 0))
camera.position.set(0, 0, 1000) camera.Potition().Set2(0, 0, 1000)

SAMPLE

package main

import (
	"syscall/js"

	"github.com/nobonobo/three"
)

const width = 640
const height = 480

func main() {

	renderer := three.NewWebGLRenderer(map[string]interface{}{
		"canvas": js.Global().Get("document").Call("querySelector", "#myCanvas"),
	})
	scene := three.NewScene()
	camera := three.NewPerspectiveCamera(45, width/height, 10, 10000)
	camera.Position().Set2(0, 0, 1000)
	geometry := three.NewBoxGeometry(400, 400, 400, 1, 1, 1)
	material := three.NewMeshNormalMaterial(js.Null())
	box := three.NewMesh(geometry, material)

	scene.Add(box.JSValue())
	var tick func(this js.Value, args []js.Value) interface{}
	tick = func(this js.Value, args []js.Value) interface{} {
		box.Rotation().SetY(box.Rotation().Y() + 0.01)
		renderer.Render(scene, camera)
		js.Global().Call("requestAnimationFrame", js.FuncOf(tick))
		return nil
	}
	tick(js.Null(), nil)
}

three's People

Contributors

nobonobo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

isgasho

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.