Built with blockbuilder.org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var epsilon = 1E-10; | |
| // IN: vectors or dertices | |
| var dot = function(v1, v2){ | |
| return (v1.x * v2.x) + (v1.y * v2.y) + (v1.z * v2.z); | |
| } | |
| // IN: Face face | |
| var Plane3D = function(face){ | |
| var p1 = face.verts[0]; |
Built with blockbuilder.org
Built with blockbuilder.org
Built with blockbuilder.org
Built with blockbuilder.org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| body { | |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| margin: auto; | |
| position: relative; | |
| width: 960px; | |
| } |
Built with blockbuilder.org
forked from Sokrates86's block: scatterplot-lines-SAINTS
Built with blockbuilder.org
Built with blockbuilder.org