pick-point-in-triangle
v1.0.1
Published
Pick a random point in a triangle
Downloads
2
Maintainers
Readme
pick-point-in-triangle
Pick a random point in a triangle, derived from this reference.
Usage
var bunny = require('bunny')
var cells = bunny.cells
var positions = bunny.positions
var triangle = [positions[cells[0][0]], positions[cells[0][1]], positions[cells[0][2]]]
var point = require('pick-point-in-triangle')(triangle);
require("pick-point-in-triangle")(vertices)
Uniformly samples within a triangle given an array of 3 vertices.
Contributing
See stackgl/contributing for details.
License
MIT. See LICENSE.md for details.