Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

Tutorial vector calculus 1: Cartesian coordinates

Project: A Project
Path: SageManifolds/Notebooks/SM_vector_calc_cartesian.ipynb / <html><head><title>< / title><meta charset=&quot;utf-8&quot;><meta name=viewport content=&quot;width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0&quot;><style> body { margin: 0px; overflow: hidden; } < / style>< / head><body><script src=&quot;https: / cdn.rawgit.com / mrdoob / three.js / r80 / build / three.min.js&quot;>< / script><script src=&quot;https: / cdn.rawgit.com / mrdoob / three.js / r80 / examples / js / controls / OrbitControls.js&quot;>< / script> <script> var scene = new THREE.Scene(); var renderer = new THREE.WebGLRenderer( { antialias: true } ); renderer.setSize( window.innerWidth, window.innerHeight ); renderer.setClearColor( 0xffffff, 1 ); document.body.appendChild( renderer.domElement ); var options = {&quot;aspect_ratio&quot;: [1.0, 1.0, 1.0], &quot;decimals&quot;: 2, &quot;frame&quot;: true, &quot;axes&quot;: false, &quot;axes_labels&quot;: [&quot;x&quot;, &quot;y&quot;, &quot;z&quot;]}; / When animations are supported by the viewer, the value 'false' / will be replaced with an option set in Python by the user var animate = false; / options.animate; var b = [{&quot;x&quot;:-2.53984245884, &quot;y&quot;:-2.53529721714, &quot;z&quot;:-2.27120532538}, {&quot;x&quot;:2.53529721714, &quot;y&quot;:2.30915429175, &quot;z&quot;:2.06473211399}];
Views: 708