Skip to content

Instantly share code, notes, and snippets.

@dImrich
dImrich / tinygo-go-compat-matrix.md
Last active March 5, 2023 13:57
TinyGo - Go | Compatibility matrix

TinyGo and Go compatibility matrix

TinyGo Go 1.20 Go 1.19 Go 1.18 Go 1.17 Go 1.16 Go 1.15 Go 1.14 Go 1.13 Go 1.12 Go 1.11
v0.27
@dImrich
dImrich / curved3Plane.js
Created January 6, 2017 18:00
Bend Three JS Plane Geometry With Bezier Curve
//Bend Three JS plane geometry with bezier curve
//Curved plane generation, bezier curve plane,
function bendPlaneGeometry(planeGeometry, centerBendZ)
{
var curve = new THREE.CubicBezierCurve3(
planeGeometry.vertices[0],
new THREE.Vector3(planeGeometry.parameters.width/2, 0, centerBendZ ),
new THREE.Vector3(planeGeometry.parameters.width/2, 0, centerBendZ ),
planeGeometry.vertices[(planeGeometry.vertices.length/2) - 1]
);