Skip to content

Instantly share code, notes, and snippets.

@mathdoodle
mathdoodle / Example.spec.ts
Last active January 13, 2021 03:49
Tutorial
export default function() {
describe("...", function() {
it("should ...", function() {
expect(true).toBeTruthy()
})
})
}
@mathdoodle
mathdoodle / Bug.ts
Last active August 25, 2016 19:19
Demon Turning
/**
* Heading
*/
const INDEX_H = 0;
/**
* Left
*/
const INDEX_L = 1;
/**
* Up.
@mathdoodle
mathdoodle / README.md
Last active August 22, 2016 22:03
Moving the Point with a uniform

Geometry using WebGL from Ground Zero

Overview

A starting point for learning Geometry using the WebGL API.

@mathdoodle
mathdoodle / README.md
Last active July 7, 2020 20:35
Geometry using WebGL from Ground Zero

Geometry using WebGL from Ground Zero

Overview

A starting point for learning Geometry using the WebGL API.

@mathdoodle
mathdoodle / README.md
Created August 21, 2016 14:26
Generators

Big Numbers

Overview

The UNITS library includes data types for number theory.

These data type are a work-in-progress.

The plan is to integrate them into STEMCstudio using Operator Overloading.

@mathdoodle
mathdoodle / README.md
Last active August 20, 2016 06:56
Big Numbers

Big Numbers

Overview

The UNITS library includes data types for number theory.

These data type are a work-in-progress.

The plan is to integrate them into STEMCstudio using Operator Overloading.

@mathdoodle
mathdoodle / DirectedAreaElement.ts
Last active February 18, 2018 23:13
HTML5 Canvas Diagram
import { Drawable, Diagram } from './diagram.js'
import { createDirectedLineSegment } from './DirectedLineSegment.js'
import { e1, e2 } from './math.js'
import { G2 } from 'davinci-units'
export interface DirectedAreaElement extends Drawable {
/**
* Vector along the first side of the DirectedAreaElement.
*/
a: G2
export default function() {
describe("...", function() {
it("should ...", function() {
expect(true).toBeTruthy()
})
})
}
@mathdoodle
mathdoodle / README.md
Last active July 7, 2020 20:19
2D Geometry WebGL Scaffold

2D Geometry WebGL Scaffold

Overview

A WebGL scaffold for Common Core Math and Geometric Algebra in the Plane.

@mathdoodle
mathdoodle / README.md
Last active August 17, 2016 15:16
Computer Graphics using WebGL

Introduction to Computer Graphics using WebGL

Overview

A WebGL scaffold.