<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.physicsbook.gatech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Canain</id>
	<title>Physics Book - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.physicsbook.gatech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Canain"/>
	<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/Special:Contributions/Canain"/>
	<updated>2026-04-10T10:29:10Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.7</generator>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17895</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17895"/>
		<updated>2015-12-06T01:22:55Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* Parameters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython 3D Objects]] and [[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation and Drawing Reference ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Label ===&lt;br /&gt;
[http://vpython.org/contents/docs/label.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 lbl = label(pos=(1,2,3), text=&#039;Information&#039;, color=color.cyan)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the label in the world&lt;br /&gt;
|-&lt;br /&gt;
| xoffset&lt;br /&gt;
| number&lt;br /&gt;
| The x component of the line (offset from the pos)&lt;br /&gt;
|-&lt;br /&gt;
| yoffset&lt;br /&gt;
| number&lt;br /&gt;
| The y component of the line (offset from the pos)&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the text&lt;br /&gt;
|-&lt;br /&gt;
| text&lt;br /&gt;
| string&lt;br /&gt;
| The text to be displayed (line breaks are \n)&lt;br /&gt;
|-&lt;br /&gt;
| font&lt;br /&gt;
| string&lt;br /&gt;
| Name of the font to be used&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the font in pixels (default: 13 pixels)&lt;br /&gt;
|-&lt;br /&gt;
| background&lt;br /&gt;
| color&lt;br /&gt;
| Color of the background&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the background of the box&lt;br /&gt;
|-&lt;br /&gt;
| border&lt;br /&gt;
| number&lt;br /&gt;
| Distance in pixels from the text to the text box (default: 5 pixels)&lt;br /&gt;
|-&lt;br /&gt;
| box&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to draw the box (default: true)&lt;br /&gt;
|-&lt;br /&gt;
| line&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to draw the box to the position (default: true)&lt;br /&gt;
|-&lt;br /&gt;
| linecolor&lt;br /&gt;
| color&lt;br /&gt;
| Color of the line and box&lt;br /&gt;
|-&lt;br /&gt;
| space&lt;br /&gt;
| number&lt;br /&gt;
| Radius in pixels of a sphere around pos where the line is not shown&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
* How is this topic connected to something that you are interested in?&lt;br /&gt;
** I like to compile useful data into compact pages. This way, time can be saved by not having to search for simple information that may not be memorized.&lt;br /&gt;
* How is it connected to your major?&lt;br /&gt;
** I&#039;m a Computer Science major so I am used to programming languages and how the need for docs are. Also, Computer Science is partly about making things more efficient. This page makes looking up common information about VPython more efficient.&lt;br /&gt;
* Is there an interesting industrial application?&lt;br /&gt;
** In the real world, references are time savers. Businesses welcome work that save production time.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Animation]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17832</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17832"/>
		<updated>2015-12-06T01:15:25Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* VPython Animation and Drawing Reference */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython 3D Objects]] and [[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation and Drawing Reference ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Label ===&lt;br /&gt;
[http://vpython.org/contents/docs/label.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 lbl = label(pos=(1,2,3), text=&#039;Information&#039;, color=color.cyan)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the label in the world&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the text&lt;br /&gt;
|-&lt;br /&gt;
| text&lt;br /&gt;
| string&lt;br /&gt;
| The text to be displayed (line breaks are \n)&lt;br /&gt;
|-&lt;br /&gt;
| font&lt;br /&gt;
| string&lt;br /&gt;
| Name of the font to be used&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the font in pixels (default: 13 pixels)&lt;br /&gt;
|-&lt;br /&gt;
| background&lt;br /&gt;
| color&lt;br /&gt;
| Color of the background&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the background of the box&lt;br /&gt;
|-&lt;br /&gt;
| border&lt;br /&gt;
| number&lt;br /&gt;
| Distance in pixels from the text to the text box (default: 5 pixels)&lt;br /&gt;
|-&lt;br /&gt;
| box&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to draw the box (default: true)&lt;br /&gt;
|-&lt;br /&gt;
| line&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to draw the box to the position (default: true)&lt;br /&gt;
|-&lt;br /&gt;
| linecolor&lt;br /&gt;
| color&lt;br /&gt;
| Color of the line and box&lt;br /&gt;
|-&lt;br /&gt;
| space&lt;br /&gt;
| number&lt;br /&gt;
| Radius in pixels of a sphere around pos where the line goes to the edge of the sphere&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
* How is this topic connected to something that you are interested in?&lt;br /&gt;
** I like to compile useful data into compact pages. This way, time can be saved by not having to search for simple information that may not be memorized.&lt;br /&gt;
* How is it connected to your major?&lt;br /&gt;
** I&#039;m a Computer Science major so I am used to programming languages and how the need for docs are. Also, Computer Science is partly about making things more efficient. This page makes looking up common information about VPython more efficient.&lt;br /&gt;
* Is there an interesting industrial application?&lt;br /&gt;
** In the real world, references are time savers. Businesses welcome work that save production time.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Animation]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17628</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17628"/>
		<updated>2015-12-06T00:59:21Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython 3D Objects]] and [[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation and Drawing Reference ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
* How is this topic connected to something that you are interested in?&lt;br /&gt;
** I like to compile useful data into compact pages. This way, time can be saved by not having to search for simple information that may not be memorized.&lt;br /&gt;
* How is it connected to your major?&lt;br /&gt;
** I&#039;m a Computer Science major so I am used to programming languages and how the need for docs are. Also, Computer Science is partly about making things more efficient. This page makes looking up common information about VPython more efficient.&lt;br /&gt;
* Is there an interesting industrial application?&lt;br /&gt;
** In the real world, references are time savers. Businesses welcome work that save production time.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Animation]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17618</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17618"/>
		<updated>2015-12-06T00:58:26Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* VPython Animation and Drawing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython 3D Objects]] and [[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation and Drawing Reference ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
* How is this topic connected to something that you are interested in?&lt;br /&gt;
** I like to compile useful data into compact pages. This way, time can be saved by not having to search for simple information that may not be memorized.&lt;br /&gt;
* How is it connected to your major?&lt;br /&gt;
** I&#039;m a Computer Science major so I am used to programming languages and how the need for docs are. Also, Computer Science is partly about making things more efficient. This page makes looking up common information about VPython more efficient.&lt;br /&gt;
* Is there an interesting industrial application?&lt;br /&gt;
** In the real world, references are time savers. Businesses welcome work that save production time.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17613</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17613"/>
		<updated>2015-12-06T00:58:03Z</updated>

		<summary type="html">&lt;p&gt;Canain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython 3D Objects]] and [[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation and Drawing ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
* How is this topic connected to something that you are interested in?&lt;br /&gt;
** I like to compile useful data into compact pages. This way, time can be saved by not having to search for simple information that may not be memorized.&lt;br /&gt;
* How is it connected to your major?&lt;br /&gt;
** I&#039;m a Computer Science major so I am used to programming languages and how the need for docs are. Also, Computer Science is partly about making things more efficient. This page makes looking up common information about VPython more efficient.&lt;br /&gt;
* Is there an interesting industrial application?&lt;br /&gt;
** In the real world, references are time savers. Businesses welcome work that save production time.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17587</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17587"/>
		<updated>2015-12-06T00:55:58Z</updated>

		<summary type="html">&lt;p&gt;Canain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython 3D Objects]] and [[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
* How is this topic connected to something that you are interested in?&lt;br /&gt;
** I like to compile useful data into compact pages. This way, time can be saved by not having to search for simple information that may not be memorized.&lt;br /&gt;
* How is it connected to your major?&lt;br /&gt;
** I&#039;m a Computer Science major so I am used to programming languages and how the need for docs are. Also, Computer Science is partly about making things more efficient. This page makes looking up common information about VPython more efficient.&lt;br /&gt;
* Is there an interesting industrial application?&lt;br /&gt;
** In the real world, references are time savers. Businesses welcome work that save production time.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17578</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17578"/>
		<updated>2015-12-06T00:55:04Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* Connectedness */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython 3D Objects]] and [[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
* How is this topic connected to something that you are interested in?&lt;br /&gt;
** I like to compile useful data into compact pages. This way, time can be saved by not having to search for simple information that may not be memorized.&lt;br /&gt;
* How is it connected to your major?&lt;br /&gt;
** I&#039;m a Computer Science major so I am used to programming languages and how the need for docs are. Also, Computer Science is partly about making things more efficient. This page makes looking up common information about VPython more efficient.&lt;br /&gt;
* Is there an interesting industrial application?&lt;br /&gt;
** In the real world, references are time savers. Businesses welcome work that save production time.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17570</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17570"/>
		<updated>2015-12-06T00:54:38Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* Connectedness */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython 3D Objects]] and [[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
##I like to compile useful data into compact pages. This way, time can be saved by not having to search for simple information that may not be memorized.&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
##I&#039;m a Computer Science major so I am used to programming languages and how the need for docs are. Also, Computer Science is partly about making things more efficient. This page makes looking up common information about VPython more efficient.&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
##In the real world, references are time savers. Businesses welcome work that save production time.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17562</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17562"/>
		<updated>2015-12-06T00:54:07Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* Connectedness */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython 3D Objects]] and [[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
##I like to compile useful data into compact pages. This way, time can be saved by not having to search for simple information that may not be memorized.&lt;br /&gt;
&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
##I&#039;m a Computer Science major so I am used to programming languages and how the need for docs are. Also, Computer Science is partly about making things more efficient. This page makes looking up common information about VPython more efficient.&lt;br /&gt;
&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
##In the real world, references are time savers. Businesses welcome work that save production time.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17555</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17555"/>
		<updated>2015-12-06T00:53:42Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* Connectedness */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython 3D Objects]] and [[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
I like to compile useful data into compact pages. This way, time can be saved by not having to search for simple information that may not be memorized.&lt;br /&gt;
&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
I&#039;m a Computer Science major so I am used to programming languages and how the need for docs are. Also, Computer Science is partly about making things more efficient. This page makes looking up common information about VPython more efficient.&lt;br /&gt;
&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
In the real world, references are time savers. Businesses welcome work that save production time.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17416</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17416"/>
		<updated>2015-12-06T00:39:31Z</updated>

		<summary type="html">&lt;p&gt;Canain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython 3D Objects]] and [[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17413</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17413"/>
		<updated>2015-12-06T00:39:18Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython_3D_Objects]] and [[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython 3D Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17411</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17411"/>
		<updated>2015-12-06T00:39:02Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* VPython Animation Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython_3D_Objects]] and [[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Curve ===&lt;br /&gt;
[http://vpython.org/contents/docs/curve.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 trail = curve(color=color.orange)&lt;br /&gt;
 trail.append(pos=(1,2,3))&lt;br /&gt;
 trail.append(pos=(4,5,6))&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector array&lt;br /&gt;
| Positions of the trail&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython_3D_Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17383</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17383"/>
		<updated>2015-12-06T00:35:04Z</updated>

		<summary type="html">&lt;p&gt;Canain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython_3D_Objects]] and [[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython_3D_Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
[[Category:VPython]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17369</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17369"/>
		<updated>2015-12-06T00:32:33Z</updated>

		<summary type="html">&lt;p&gt;Canain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for drawing functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython_3D_Objects]] and [[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython_3D_Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17360</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17360"/>
		<updated>2015-12-06T00:31:02Z</updated>

		<summary type="html">&lt;p&gt;Canain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them.&lt;br /&gt;
&lt;br /&gt;
For detailed and more descriptive pages about objects and how to use them, see [[VPython_3D_Objects]] and [[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython_3D_Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17342</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17342"/>
		<updated>2015-12-06T00:27:58Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them. For more descriptive pages about objects and how to use them, see [[VPython_3D_Objects]] and [[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=color.green)&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython_3D_Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17336</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17336"/>
		<updated>2015-12-06T00:27:22Z</updated>

		<summary type="html">&lt;p&gt;Canain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page compiles common usages into one page for quick reference. This page assumes that the student knows the basics of creating the objects and just needs a reference page for them. For more descriptive pages about objects and how to use them, see [[VPython_3D_Objects]] and [[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=green)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython_3D_Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17328</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17328"/>
		<updated>2015-12-06T00:25:48Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page compiles common usages into one page for quick reference. For more descriptive pages about these, see [[VPython_3D_Objects]] and [[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=green)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[VPython_3D_Objects]]&lt;br /&gt;
&lt;br /&gt;
[[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17323</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17323"/>
		<updated>2015-12-06T00:25:05Z</updated>

		<summary type="html">&lt;p&gt;Canain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page compiles common usages into one page for quick reference. For more descriptive pages about these, see [[VPython_3D_Objects]] and [[VPython_Objects]]&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=green)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17314</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17314"/>
		<updated>2015-12-06T00:23:40Z</updated>

		<summary type="html">&lt;p&gt;Canain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page compiles common usages into one page for quick reference.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=green)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=17302</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=17302"/>
		<updated>2015-12-06T00:22:06Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* Modeling with VPython */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Welcome to the Georgia Tech Wiki for Intro Physics.  This resources was created so that students can contribute and curate content to help those with limited or no access to a textbook.  When reading this website, please correct any errors you may come across. If you read something that isn&#039;t clear, please consider revising it!&lt;br /&gt;
&lt;br /&gt;
Looking to make a contribution?&lt;br /&gt;
#Pick a specific topic from intro physics&lt;br /&gt;
#Add that topic, as a link to a new page, under the appropriate category listed below by editing this page.&lt;br /&gt;
#Copy and paste the default [[Template]] into your new page and start editing.&lt;br /&gt;
&lt;br /&gt;
Please remember that this is not a textbook and you are not limited to expressing your ideas with only text and equations.  Whenever possible embed: pictures, videos, diagrams, simulations, computational models (e.g. Glowscript), and whatever content you think makes learning physics easier for other students.&lt;br /&gt;
&lt;br /&gt;
== Source Material ==&lt;br /&gt;
All of the content added to this resource must be in the public domain or similar free resource.  If you are unsure about a source, contact the original author for permission. That said, there is a surprisingly large amount of introductory physics content scattered across the web.  Here is an incomplete list of intro physics resources (please update as needed).&lt;br /&gt;
* A physics resource written by experts for an expert audience [https://en.wikipedia.org/wiki/Portal:Physics Physics Portal]&lt;br /&gt;
* A wiki book on modern physics [https://en.wikibooks.org/wiki/Modern_Physics Modern Physics Wiki]&lt;br /&gt;
* The MIT open courseware for intro physics [http://ocw.mit.edu/resources/res-8-002-a-wikitextbook-for-introductory-mechanics-fall-2009/index.htm MITOCW Wiki]&lt;br /&gt;
* An online concept map of intro physics [http://hyperphysics.phy-astr.gsu.edu/hbase/hph.html HyperPhysics]&lt;br /&gt;
* Interactive physics simulations [https://phet.colorado.edu/en/simulations/category/physics PhET]&lt;br /&gt;
* OpenStax algebra based intro physics textbook [https://openstaxcollege.org/textbooks/college-physics College Physics]&lt;br /&gt;
* The Open Source Physics project is a collection of online physics resources [http://www.opensourcephysics.org/ OSP]&lt;br /&gt;
* A resource guide compiled by the [http://www.aapt.org/ AAPT] for educators [http://www.compadre.org/ ComPADRE]&lt;br /&gt;
&lt;br /&gt;
== Organizing Categories ==&lt;br /&gt;
These are the broad, overarching categories, that we cover in two semester of introductory physics.  You can add subcategories or make a new category as needed.  A single topic should direct readers to a page in one of these catagories.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
===Interactions===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Kinds of Matter]]&lt;br /&gt;
**[[Ball and Spring Model of Matter]]&lt;br /&gt;
*[[Detecting Interactions]]&lt;br /&gt;
*[[Escape Velocity]]&lt;br /&gt;
*[[Fundamental Interactions]]&lt;br /&gt;
*[[Determinism]]&lt;br /&gt;
*[[System &amp;amp; Surroundings]] &lt;br /&gt;
*[[Free Body Diagram]]&lt;br /&gt;
*[[Newton&#039;s First Law of Motion]]&lt;br /&gt;
*[[Newton&#039;s Second Law of Motion]]&lt;br /&gt;
*[[Newton&#039;s Third Law of Motion]]&lt;br /&gt;
*[[Gravitational Force]]&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Conservation of Energy]]&lt;br /&gt;
*[[Conservation of Charge]]&lt;br /&gt;
*[[Terminal Speed]]&lt;br /&gt;
*[[Simple Harmonic Motion]]&lt;br /&gt;
*[[Speed and Velocity]]&lt;br /&gt;
*[[Electric Polarization]]&lt;br /&gt;
*[[Perpetual Freefall (Orbit)]]&lt;br /&gt;
*[[2-Dimensional Motion]]&lt;br /&gt;
*[[Center of Mass]]&lt;br /&gt;
*[[Reaction Time]]&lt;br /&gt;
*[[Time Dilation]]&lt;br /&gt;
*[[Pauli exclusion principle]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Modeling with VPython===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[VPython]]&lt;br /&gt;
*[[VPython basics]]&lt;br /&gt;
*[[VPython Common Errors and Troubleshooting]]&lt;br /&gt;
*[[VPython Functions]]&lt;br /&gt;
*[[VPython Lists]]&lt;br /&gt;
*[[VPython Multithreading]]&lt;br /&gt;
*[[VPython Animation]]&lt;br /&gt;
*[[VPython Objects]]&lt;br /&gt;
*[[VPython 3D Objects]]&lt;br /&gt;
*[[VPython Reference]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Theory===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Einstein&#039;s Theory of Special Relativity]]&lt;br /&gt;
*[[Einstein&#039;s Theory of General Relativity]]&lt;br /&gt;
*[[Quantum Theory]]&lt;br /&gt;
*[[Maxwell&#039;s Electromagnetic Theory]]&lt;br /&gt;
*[[Atomic Theory]]&lt;br /&gt;
*[[String Theory]]&lt;br /&gt;
*[[Elementary Particles and Particle Physics Theory]]&lt;br /&gt;
*[[Law of Gravitation]]&lt;br /&gt;
*[[Newton&#039;s Laws]]&lt;br /&gt;
*[[Higgs field]]&lt;br /&gt;
*[[Supersymmetry]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Notable Scientists===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Alexei Alexeyevich Abrikosov]]&lt;br /&gt;
*[[Christian Doppler]]&lt;br /&gt;
*[[Albert Einstein]]&lt;br /&gt;
*[[Ernest Rutherford]]&lt;br /&gt;
*[[Joseph Henry]]&lt;br /&gt;
*[[Michael Faraday]]&lt;br /&gt;
*[[J.J. Thomson]]&lt;br /&gt;
*[[James Maxwell]]&lt;br /&gt;
*[[Robert Hooke]]&lt;br /&gt;
*[[Carl Friedrich Gauss]]&lt;br /&gt;
*[[Nikola Tesla]]&lt;br /&gt;
*[[Andre Marie Ampere]]&lt;br /&gt;
*[[Sir Isaac Newton]]&lt;br /&gt;
*[[J. Robert Oppenheimer]]&lt;br /&gt;
*[[Oliver Heaviside]]&lt;br /&gt;
*[[Rosalind Franklin]]&lt;br /&gt;
*[[Enrico Fermi]]&lt;br /&gt;
*[[Robert J. Van de Graaff]]&lt;br /&gt;
*[[Charles de Coulomb]]&lt;br /&gt;
*[[Hans Christian Ørsted]]&lt;br /&gt;
*[[Philo Farnsworth]]&lt;br /&gt;
*[[Niels Bohr]]&lt;br /&gt;
*[[Georg Ohm]]&lt;br /&gt;
&lt;br /&gt;
*[[Galileo Galilei]]&lt;br /&gt;
*[[Gustav Kirchhoff]]&lt;br /&gt;
*[[Max Planck]]&lt;br /&gt;
*[[Heinrich Hertz]]&lt;br /&gt;
*[[Edwin Hall]]&lt;br /&gt;
*[[James Watt]]&lt;br /&gt;
*[[Count Alessandro Volta]]&lt;br /&gt;
*[[Josiah Willard Gibbs]]&lt;br /&gt;
*[[Richard Phillips Feynman]]&lt;br /&gt;
*[[Sir David Brewster]]&lt;br /&gt;
*[[Daniel Bernoulli]]&lt;br /&gt;
*[[William Thomson]]&lt;br /&gt;
*[[Leonhard Euler]]&lt;br /&gt;
*[[Robert Fox Bacher]]&lt;br /&gt;
*[[Stephen Hawking]]&lt;br /&gt;
*[[Amedeo Avogadro]]&lt;br /&gt;
*[[Wilhelm Conrad Roentgen]]&lt;br /&gt;
*[[Pierre Laplace]]&lt;br /&gt;
*[[Thomas Edison]]&lt;br /&gt;
*[[Hendrik Lorentz]]&lt;br /&gt;
*[[Jean-Baptiste Biot]]&lt;br /&gt;
*[[Lise Meitner]]&lt;br /&gt;
*[[Lisa Randall]]&lt;br /&gt;
*[[Felix Savart]]&lt;br /&gt;
*[[Heinrich Lenz]]&lt;br /&gt;
*[[Max Born]]&lt;br /&gt;
*[[Archimedes]]&lt;br /&gt;
*[[Jean Baptiste Biot]]&lt;br /&gt;
*[[Carl Sagan]]&lt;br /&gt;
*[[Eugene Wigner]]&lt;br /&gt;
*[[Marie Curie]]&lt;br /&gt;
*[[Pierre Curie]]&lt;br /&gt;
*[[Werner Heisenberg]]&lt;br /&gt;
*[[Johannes Diderik van der Waals]]&lt;br /&gt;
*[[Louis de Broglie]]&lt;br /&gt;
*[[Aristotle]]&lt;br /&gt;
*[[Émilie du Châtelet]]&lt;br /&gt;
*[[Blaise Pascal]]&lt;br /&gt;
*[[Siméon Denis Poisson]]&lt;br /&gt;
*[[Benjamin Franklin]]&lt;br /&gt;
*[[James Chadwick]]&lt;br /&gt;
*[[Henry Cavendish]]&lt;br /&gt;
*[[Thomas Young]]&lt;br /&gt;
*[[James Prescott Joule]]&lt;br /&gt;
*[[John Bardeen]]&lt;br /&gt;
*[[Leo Baekeland]]&lt;br /&gt;
*[[Alhazen]]&lt;br /&gt;
*[[Willebrord Snell]]&lt;br /&gt;
*[[Fritz Walther Meissner]]&lt;br /&gt;
*[[Johannes Kepler]]&lt;br /&gt;
*[[Johann Wilhelm Ritter]]&lt;br /&gt;
*[[Philipp Lenard]]&lt;br /&gt;
*[[Robert A. Millikan]]&lt;br /&gt;
*[[Joseph Louis Gay-Lussac]]&lt;br /&gt;
*[[Guglielmo Marconi]]&lt;br /&gt;
*[[William Lawrence Bragg]]&lt;br /&gt;
*[[Robert Goddard]]&lt;br /&gt;
*[[Léon Foucault]]&lt;br /&gt;
*[[Henri Poincaré]]&lt;br /&gt;
*[[Steven Weinberg]]&lt;br /&gt;
*[[Arthur Compton]]&lt;br /&gt;
*[[Pythagoras of Samos]]&lt;br /&gt;
*[[Subrahmanyan Chandrasekhar]]&lt;br /&gt;
*[[Wilhelm Eduard Weber]]&lt;br /&gt;
*[[Edmond Becquerel]]&lt;br /&gt;
*[[Joseph Rotblat]]&lt;br /&gt;
*[[Carl David Anderson]]&lt;br /&gt;
*[[Hermann von Helmholtz]]&lt;br /&gt;
*[[Nicolas Leonard Sadi Carnot]]&lt;br /&gt;
*[[Wallace Carothers]]&lt;br /&gt;
*[[David J. Wineland]]&lt;br /&gt;
*[[Rudolf Clausius]]&lt;br /&gt;
*[[Edward L. Norton]]&lt;br /&gt;
*[[Shuji Nakamura]]&lt;br /&gt;
*[[Pierre Laplace Pt. 2]]&lt;br /&gt;
*[[William B. Shockley]]&lt;br /&gt;
*[[Osborne Reynolds]]&lt;br /&gt;
*[[Alexander Graham Bell]]&lt;br /&gt;
*[[Hans Bethe]]&lt;br /&gt;
*[[Erwin Schrodinger]]&lt;br /&gt;
*[[Wolfgang Pauli]]&lt;br /&gt;
*[[Paul Dirac]]&lt;br /&gt;
*[[Bill Nye]]&lt;br /&gt;
*[[Arnold Sommerfeld]]&lt;br /&gt;
&lt;br /&gt;
*[[James Franck]]&lt;br /&gt;
*[[Chen-Ning Yang]]&lt;br /&gt;
*[[Albert A. Micheleson &amp;amp; Edward W. Morley]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Properties of Matter===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Mass]]&lt;br /&gt;
*[[Velocity]]&lt;br /&gt;
*[[Relative Velocity]]&lt;br /&gt;
*[[Density]]&lt;br /&gt;
*[[Charge]]&lt;br /&gt;
*[[Spin]]&lt;br /&gt;
*[[SI Units]]&lt;br /&gt;
*[[Heat Capacity]]&lt;br /&gt;
*[[Specific Heat]]&lt;br /&gt;
*[[Wavelength]]&lt;br /&gt;
*[[Conductivity]]&lt;br /&gt;
*[[Malleability]]&lt;br /&gt;
*[[Ductility]]&lt;br /&gt;
*[[Weight]]&lt;br /&gt;
*[[Boiling Point]]&lt;br /&gt;
*[[Melting Point]]&lt;br /&gt;
*[[Inertia]]&lt;br /&gt;
*[[Non-Newtonian Fluids]]&lt;br /&gt;
*[[Ferrofluids]]&lt;br /&gt;
*[[Color]]&lt;br /&gt;
*[[Temperature]]&lt;br /&gt;
*[[Plasma]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Contact Interactions===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Young&#039;s Modulus]]&lt;br /&gt;
* [[Friction]]&lt;br /&gt;
* [[Static Friction]]&lt;br /&gt;
* [[Tension]]&lt;br /&gt;
* [[Hooke&#039;s Law]]&lt;br /&gt;
*[[Centripetal Force and Curving Motion]]&lt;br /&gt;
*[[Compression or Normal Force]]&lt;br /&gt;
* [[Length and Stiffness of an Interatomic Bond]]&lt;br /&gt;
* [[Speed of Sound in Solids]]&lt;br /&gt;
* [[Iterative Prediction of Spring-Mass System]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Momentum===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Vectors]]&lt;br /&gt;
* [[Kinematics]]&lt;br /&gt;
* [[Conservation of Momentum]]&lt;br /&gt;
* [[Predicting Change in multiple dimensions]]&lt;br /&gt;
* [[Derivation of the Momentum Principle]]&lt;br /&gt;
* [[Momentum Principle]]&lt;br /&gt;
* [[Impulse Momentum]]&lt;br /&gt;
* [[Curving Motion]]&lt;br /&gt;
* [[Projectile Motion]]&lt;br /&gt;
* [[Multi-particle Analysis of Momentum]]&lt;br /&gt;
* [[Iterative Prediction]]&lt;br /&gt;
* [[Analytical Prediction]]&lt;br /&gt;
* [[Newton&#039;s Laws and Linear Momentum]]&lt;br /&gt;
* [[Net Force]]&lt;br /&gt;
* [[Center of Mass]]&lt;br /&gt;
* [[Momentum at High Speeds]]&lt;br /&gt;
* [[Change in Momentum in Time for Curving Motion]]&lt;br /&gt;
* [[Momentum with respect to external Forces]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Angular Momentum===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
* [[The Moments of Inertia]]&lt;br /&gt;
* [[Moment of Inertia for a cylinder]]&lt;br /&gt;
* [[Rotation]]&lt;br /&gt;
* [[Torque]]&lt;br /&gt;
* [[Systems with Zero Torque]]&lt;br /&gt;
* [[Systems with Nonzero Torque]]&lt;br /&gt;
* [[Torque vs Work]]&lt;br /&gt;
* [[Angular Impulse]]&lt;br /&gt;
* [[Right Hand Rule]]&lt;br /&gt;
* [[Angular Velocity]]&lt;br /&gt;
* [[Predicting the Position of a Rotating System]]&lt;br /&gt;
* [[Translational Angular Momentum]]&lt;br /&gt;
* [[The Angular Momentum Principle]]&lt;br /&gt;
* [[Angular Momentum of Multiparticle Systems]]&lt;br /&gt;
* [[Rotational Angular Momentum]]&lt;br /&gt;
* [[Total Angular Momentum]]&lt;br /&gt;
* [[Gyroscopes]]&lt;br /&gt;
* [[Angular Momentum Compared to Linear Momentum]]&lt;br /&gt;
*[[Torque 2]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Energy===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[The Photoelectric Effect]]&lt;br /&gt;
*[[Photons]]&lt;br /&gt;
*[[The Energy Principle]]&lt;br /&gt;
*[[Predicting Change]]&lt;br /&gt;
*[[Rest Mass Energy]]&lt;br /&gt;
*[[Kinetic Energy]]&lt;br /&gt;
*[[Potential Energy]]&lt;br /&gt;
**[[Potential Energy for a Magnetic Dipole]]&lt;br /&gt;
**[[Potential Energy of a Multiparticle System]]&lt;br /&gt;
*[[Work]]&lt;br /&gt;
**[[Work Done By A Nonconstant Force]]&lt;br /&gt;
*[[Work and Energy for an Extended System]]&lt;br /&gt;
*[[Thermal Energy]]&lt;br /&gt;
*[[Conservation of Energy]]&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Energy Transfer due to a Temperature Difference]]&lt;br /&gt;
*[[Gravitational Potential Energy]]&lt;br /&gt;
*[[Point Particle Systems]]&lt;br /&gt;
*[[Real Systems]]&lt;br /&gt;
*[[Spring Potential Energy]]&lt;br /&gt;
**[[Ball and Spring Model]]&lt;br /&gt;
*[[Internal Energy]]&lt;br /&gt;
**[[Potential Energy of a Pair of Neutral Atoms]]&lt;br /&gt;
*[[Translational, Rotational and Vibrational Energy]]&lt;br /&gt;
*[[Franck-Hertz Experiment]]&lt;br /&gt;
*[[Power (Mechanical)]]&lt;br /&gt;
*[[Transformation of Energy]]&lt;br /&gt;
&lt;br /&gt;
*[[Energy Graphs]]&lt;br /&gt;
**[[Energy graphs and the Bohr model]]&lt;br /&gt;
*[[Air Resistance]]&lt;br /&gt;
*[[Electronic Energy Levels]]&lt;br /&gt;
*[[Second Law of Thermodynamics and Entropy]]&lt;br /&gt;
*[[Specific Heat Capacity]]&lt;br /&gt;
*[[The Maxwell-Boltzmann Distribution]]&lt;br /&gt;
*[[Electronic Energy Levels and Photons]]&lt;br /&gt;
*[[Energy Density]]&lt;br /&gt;
*[[Bohr Model]]&lt;br /&gt;
*[[Quantized energy levels]]&lt;br /&gt;
**[[Spontaneous Photon Emission]]&lt;br /&gt;
*[[Path Independence of Electric Potential]]&lt;br /&gt;
*[[Energy in a Circuit]]&lt;br /&gt;
*[[The Photovoltaic Effect]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Collisions===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
[[File:opener.png]]&lt;br /&gt;
&lt;br /&gt;
*[[Collisions]] &lt;br /&gt;
Collisions are events that happen very frequently in our day-to-day world. In the realm of Physics, a collision is defined as any sort of process in which before and after a short time interval there is little interaction, but during that short time interval there are large interactions. When looking at collisions, it is first important to understand two very important principles: the Momentum Principle and the Energy Principle. Both principles serve use when talking of collisions because they provide a way in which to analyze these collisions. Collisions themselves can be categorized into 3 main different types: elastic collisions, inelastic collisions, maximally inelastic collisions. All 3 collisions will get touched on in more detail further on.&lt;br /&gt;
   [[File:pe.png]]&lt;br /&gt;
 &lt;br /&gt;
*[[Elastic Collisions]]&lt;br /&gt;
A collision is deemed &amp;quot;elastic&amp;quot; when the internal energy of the objects in the system does not change (in other words, change in internal energy equals 0). Because in an elastic collision no kinetic energy is converted over to internal energy, in any elastic collision Kfinal always equals Kinitial.&lt;br /&gt;
   [[File:Elco.png]]&lt;br /&gt;
&lt;br /&gt;
*[[Inelastic Collisions]]&lt;br /&gt;
A collision is said to be &amp;quot;inelastic&amp;quot; when it is not elastic; therefore, an inelastic collision is an interaction in which some change in internal energy occurs between the colliding objects (in other words, change in internal energy does not equal 0). Examples of such changes that occur between colliding objects include, but are not limited to, things like they get hot, or they vibrate/rotate, or they deform. Because some of the kinetic energy is converted to internal energy during an inelastic collision, Kfinal does not equal Kinitial.&lt;br /&gt;
There are a few characteristics that one can search for when identifying inelasticity. These indications include things such as:&lt;br /&gt;
*Objects stick together after the collision&lt;br /&gt;
*An object is in an excited state after the collision&lt;br /&gt;
*An object becomes deformed after the collision&lt;br /&gt;
*The objects become hotter after the collision&lt;br /&gt;
*There exists more vibration or rotation after the collision&lt;br /&gt;
   [[File:inve.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[[Maximally Inelastic Collision]] &lt;br /&gt;
Maximally inelastic collisions, also known as &amp;quot;sticking collisions&amp;quot;, are the most extreme kinds of inelastic collisions. Just as its secondary name implies, a maximally inelastic collision is one in which the colliding objects stick together creating maximum dissipation. This does not automatically mean that the colliding objects stop dead because the law of conservation of momentum. In a maximally inelastic collision, the remaining kinetic energy is present only because total momentum can&#039;t change and must be conserved.&lt;br /&gt;
   [[File:inel.gif]]&lt;br /&gt;
&lt;br /&gt;
*[[Head-on Collision of Equal Masses]]&lt;br /&gt;
The easiest way to understand this phenomenon is to look at it through an example. In this case, we can analyze it through the common game of billiards. Taking the two, equally massed billiard balls as the system, we can neglect the small frictional force exerted on the balls by the billiard table. The Momentum Principle states that in this head-on collision of billiard balls the total final momentum in the x direction must equal the total initial momentum. However, this alone does not give us the knowledge to know how the momentum will be divided up between the two balls. Considering the law of conservation of energy, we can more accurately depict what will happen. This will also allow for one to identify what kind of collision occurs (elastic, inelastic, or maximally inelastic). It is important to know that head-on collisions of equal masses do not have a definite type of collision associated with it.&lt;br /&gt;
   [[File:momentum-real-life-applications-2895.jpg]]   [[File:8ball.gif]]&lt;br /&gt;
&lt;br /&gt;
*[[Head-on Collision of Unequal Masses]]&lt;br /&gt;
Just as with head-on collisions of equal masses, it is easy to understand head-on collisions of unequal masses by viewing it through an example. Let&#039;s take for example two balls of unequal masses like a ping-pong ball and a bowling ball. For the purpose of this example (so as to allow for no friction and no other significant external forces), let&#039;s imagine these objects collide in outer space inside an orbiting spacecraft. If there were to be a collision between the two, what would one expect to happen? One could expect to see the ping-pong ball collide with the bowling ball and bounce straight back with a very small change of speed. What one might not expect as much is that the bowling ball also moves, just very slowly. Again, this can all be explained through the conservation of momentum and the conservation of energy.&lt;br /&gt;
   [[File:mi3e.jpg]]&lt;br /&gt;
&lt;br /&gt;
*[[Frame of Reference]]&lt;br /&gt;
In the world of Physics, a frame of reference is the perspective from which a system is observed. It can be stationary or sometimes it can even be moving at a constant velocity. In some rare cases, the frame of reference moves at an nonconstant velocity and is deemed &amp;quot;noninertial&amp;quot; meaning the basic laws of physics do not apply. Continuing with the trend of examples, pretend you are at a train station observing trains as they pass by. From your stationary frame of reference, you observe that the passenger on the train is moving at the same velocity as the train. However, from a moving frame of reference, say from the eyes of the train conductor, he would view the train passengers as &amp;quot;anchored&amp;quot; to the train.&lt;br /&gt;
   [[File:train.png]]&lt;br /&gt;
&lt;br /&gt;
*[[Scattering: Collisions in 2D and 3D]]&lt;br /&gt;
Experiments that involve scattering are often used to study the structure and behavior of atoms, nuclei, as well as of other small particles. In an experiment like such, a beam of particles collides with other particles. If it is an atomic or nuclear collision, we are unable to observe the curving trajectories inside the tiny region of interaction. Instead, we can only truly observe the trajectories before and after the collision. This is only possible because the particles are at a farther distance apart and have a very weak mutual interaction; this essentially means that the particles are moving almost in a straight line. A good example which demonstrates scattering is the collision between an alpha particle (the nucleus of a helium atom) and the nucleus of a gold atom. One will understand this phenomenon more in depth after first understanding the Rutherford Experiment which will get touched on later.&lt;br /&gt;
&lt;br /&gt;
*[[Rutherford Experiment and Atomic Collisions]]&lt;br /&gt;
In England in 1911, a famous experiment was performed by a group of scientists led by Mr. Ernest Rutherford. This experiment, later known as &amp;quot;The Rutherford Experiment&amp;quot;, was a tremendous breakthrough for its time because it led to the discovery of the nucleus inside the atom. Rutherford&#039;s experiment involved the scattering of a high-speed alpha particle (now known as a helium nuclei - 2 protons and 2 neutrons) as it was shot at a thin gold foil (consisting of a nuclei with 79 protons and 118 neutrons). In the experiment, Rutherford and his team discovered that the velocity of the alpha particles was not high enough to allow the particles to make actual contact with the gold nucleus. Although they never actually made contact, it is still deemed a collision because there exists a sizable force between the alpha particle and the gold nucleus over a very short period of time. In conclusion, we say the alpha particle is &amp;quot;scattered&amp;quot; by its interaction with the nucleus of a gold atom and experiments like such are called &amp;quot;scattering&amp;quot; experiments.&lt;br /&gt;
   [[File:ruthef.jpg]]&lt;br /&gt;
&lt;br /&gt;
*[[Coefficient of Restitution]]&lt;br /&gt;
The coefficient of restitution is a measure of the elasticity in a collision. It is the ratio of the differences in velocities before and after the collision. The coefficient is evaluated by taking the difference in the velocities of the colliding objects after the collision and dividing by the difference in the velocities of the colliding objects before the collision.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
All of the following information was collected from the Matter and Interactions 4th Edition physics textbook. The book is cited as follows...&lt;br /&gt;
&lt;br /&gt;
Chabay, Ruth W., and Bruce A. Sherwood. &amp;quot;Chapter 10: Collisions.&amp;quot; Matter &amp;amp; Interactions. Fourth Edition ed. Wiley, 2015. 383-409. Print.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Fields===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Electric Field]] of a&lt;br /&gt;
** [[Point Charge]]&lt;br /&gt;
** [[Electric Dipole]]&lt;br /&gt;
** [[Capacitor]]&lt;br /&gt;
** [[Charged Rod]]&lt;br /&gt;
** [[Charged Ring]]&lt;br /&gt;
** [[Charged Disk]]&lt;br /&gt;
** [[Charged Spherical Shell]]&lt;br /&gt;
** [[integrating the spherical shell]]&lt;br /&gt;
** [[Charged Cylinder]]&lt;br /&gt;
**[[A Solid Sphere Charged Throughout Its Volume]]&lt;br /&gt;
*[[Charge Density]]&lt;br /&gt;
*[[Superposition Principle]]&lt;br /&gt;
*[[Electric Potential]] &lt;br /&gt;
**[[Potential Difference Path Independence]]&lt;br /&gt;
**[[Potential Difference in a Uniform Field]]&lt;br /&gt;
**[[Potential Difference of point charge in a non-Uniform Field]]&lt;br /&gt;
**[[Potential Difference at One Location]]&lt;br /&gt;
**[[Sign of Potential Difference]]&lt;br /&gt;
**[[Potential Difference in an Insulator]]&lt;br /&gt;
**[[Energy Density and Electric Field]]&lt;br /&gt;
** [[Systems of Charged Objects]]&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
**[[Polarization of an Atom]]&lt;br /&gt;
**[[Charged Conductor and Charged Insulator]]&lt;br /&gt;
*[[Charge Motion in Metals]]&lt;br /&gt;
*[[Charge Transfer]]&lt;br /&gt;
**[[Electrostatic Discharge]]&lt;br /&gt;
*[[Magnetic Field]]&lt;br /&gt;
**[[Right-Hand Rule]]&lt;br /&gt;
**[[Direction of Magnetic Field]]&lt;br /&gt;
**[[Magnetic Field of a Long Straight Wire]]&lt;br /&gt;
**[[Magnetic Field of a Loop]]&lt;br /&gt;
**[[Magnetic Field of a Solenoid]]&lt;br /&gt;
**[[Bar Magnet]]&lt;br /&gt;
**[[Magnetic Dipole Moment]]&lt;br /&gt;
***[[Stern-Gerlach Experiment]]&lt;br /&gt;
**[[Magnetic Torque]]&lt;br /&gt;
**[[Magnetic Force]]&lt;br /&gt;
***[[Applying Magnetic Force to Currents]]&lt;br /&gt;
**[[Earth&#039;s Magnetic Field]]&lt;br /&gt;
**[[Atomic Structure of Magnets]]&lt;br /&gt;
*[[Combining Electric and Magnetic Forces]]&lt;br /&gt;
**[[Hall Effect]]&lt;br /&gt;
**[[Lorentz Force]]&lt;br /&gt;
**[[Biot-Savart Law]]&lt;br /&gt;
**[[Biot-Savart Law for Currents]]&lt;br /&gt;
**[[Integration Techniques for Magnetic Field]]&lt;br /&gt;
**[[Sparks in Air]]&lt;br /&gt;
**[[Motional Emf]]&lt;br /&gt;
**[[Detecting a Magnetic Field]]&lt;br /&gt;
**[[Moving Point Charge]]&lt;br /&gt;
**[[Non-Coulomb Electric Field]]&lt;br /&gt;
**[[Electric Motors]]&lt;br /&gt;
**[[Solenoid Applications]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple Circuits===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Components]]&lt;br /&gt;
*[[Steady State]]&lt;br /&gt;
*[[Non Steady State]]&lt;br /&gt;
*[[Charging and Discharging a Capacitor]]&lt;br /&gt;
*[[Work and Power In A Circuit]]&lt;br /&gt;
*[[Thin and Thick Wires]]&lt;br /&gt;
*[[Node Rule]]&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Resistivity]]&lt;br /&gt;
*[[Power in a circuit]]&lt;br /&gt;
*[[Ammeters,Voltmeters,Ohmmeters]]&lt;br /&gt;
*[[Current]]&lt;br /&gt;
**[[AC]]&lt;br /&gt;
*[[Ohm&#039;s Law]]&lt;br /&gt;
*[[Series Circuits]]&lt;br /&gt;
*[[Parallel Circuits]]&lt;br /&gt;
*[[RC]]&lt;br /&gt;
*[[Parallel Circuits vs. Series Circuits]]&lt;br /&gt;
*[[AC vs DC]]&lt;br /&gt;
**[[Rectification (Converting AC to DC)]]&lt;br /&gt;
*[[Charge in a RC Circuit]]&lt;br /&gt;
*[[Current in a RC circuit]]&lt;br /&gt;
*[[Circular Loop of Wire]]&lt;br /&gt;
*[[Current in a RL Circuit]]&lt;br /&gt;
*[[RL Circuit]]&lt;br /&gt;
*[[Feedback]]&lt;br /&gt;
*[[Transformers (Circuits)]]&lt;br /&gt;
*[[Resistors and Conductivity]]&lt;br /&gt;
*[[Semiconductor Devices]]&lt;br /&gt;
*[[Insulators]]&lt;br /&gt;
*[[Voltage]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Maxwell&#039;s Equations===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Gauss&#039;s Flux Theorem]]&lt;br /&gt;
**[[Electric Fields]]&lt;br /&gt;
***[[Examples of Flux Through Surfaces and Objects]]&lt;br /&gt;
**[[Magnetic Fields]]&lt;br /&gt;
**[[Proof of Gauss&#039;s Law]]&lt;br /&gt;
*[[Ampere&#039;s Law]]&lt;br /&gt;
**[[Magnetic Field of Coaxial Cable Using Ampere&#039;s Law]]&lt;br /&gt;
**[[Magnetic Field of a Long Thick Wire Using Ampere&#039;s Law]]&lt;br /&gt;
**[[Magnetic Field of a Toroid Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Faraday&#039;s Law]]&lt;br /&gt;
**[[Curly Electric Fields]]&lt;br /&gt;
**[[Inductance]]&lt;br /&gt;
***[[Transformers (Physics)]]&lt;br /&gt;
***[[Energy Density]]&lt;br /&gt;
**[[Lenz&#039;s Law]]&lt;br /&gt;
***[[Lenz Effect and the Jumping Ring]]&lt;br /&gt;
**[[Lenz&#039;s Rule]]&lt;br /&gt;
**[[Motional Emf using Faraday&#039;s Law]]&lt;br /&gt;
*[[Ampere-Maxwell Law]]&lt;br /&gt;
*[[Superconductors]]&lt;br /&gt;
**[[Meissner effect]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Radiation===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Producing a Radiative Electric Field]]&lt;br /&gt;
*[[Sinusoidal Electromagnetic Radiaton]]&lt;br /&gt;
*[[Lenses]]&lt;br /&gt;
*[[Energy and Momentum Analysis in Radiation]]&lt;br /&gt;
**[[Poynting Vector]]&lt;br /&gt;
*[[Electromagnetic Propagation]]&lt;br /&gt;
**[[Wavelength and Frequency]]&lt;br /&gt;
*[[Snell&#039;s Law]]&lt;br /&gt;
*[[Effects of Radiation on Matter]]&lt;br /&gt;
*[[Light Propagation Through a Medium]]&lt;br /&gt;
*[[Light Scaterring: Why is the Sky Blue]]&lt;br /&gt;
*[[Light Refraction: Bending of light]]&lt;br /&gt;
*[[Cherenkov Radiation]]&lt;br /&gt;
*[[Rayleigh Effect]]&lt;br /&gt;
*[[Image Formation]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sound===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Doppler Effect]]&lt;br /&gt;
*[[Nature, Behavior, and Properties of Sound]]&lt;br /&gt;
*[[Speed of Sound]]&lt;br /&gt;
*[[Resonance]]&lt;br /&gt;
*[[Sound Barrier]]&lt;br /&gt;
*[[Sound Rarefaction]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Waves===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Bragg&#039;s Law]]&lt;br /&gt;
*[[Standing waves]]&lt;br /&gt;
*[[Gravitational waves]]&lt;br /&gt;
*[[Plasma waves]]&lt;br /&gt;
*[[Wave-Particle Duality]]&lt;br /&gt;
*[[Electromagnetic Spectrum]]&lt;br /&gt;
*[[Color Light Wave]]&lt;br /&gt;
*[[The Wave Equation]]&lt;br /&gt;
*[[Pendulum Motion]]&lt;br /&gt;
*[[Transverse and Longitudinal Waves]]&lt;br /&gt;
*[[Planck&#039;s Relation]]&lt;br /&gt;
*[[interference]]&lt;br /&gt;
*[[Polarization of Waves]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Real Life Applications of Electromagnetic Principles===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electromagnetic Junkyard Cranes]]&lt;br /&gt;
*[[Maglev Trains]]&lt;br /&gt;
*[[Spark Plugs]]&lt;br /&gt;
*[[Metal Detectors]]&lt;br /&gt;
*[[Speakers]]&lt;br /&gt;
*[[Radios]]&lt;br /&gt;
*[[Ampullae of Lorenzini]]&lt;br /&gt;
*[[Electrocytes]]&lt;br /&gt;
*[[Generator]]&lt;br /&gt;
*[[Using Capacitors to Measure Fluid Level]]&lt;br /&gt;
*[[Cyclotron]]&lt;br /&gt;
*[[Railgun]]&lt;br /&gt;
*[[Magnetic Resonance Imaging]]&lt;br /&gt;
*[[Electric Eels]]&lt;br /&gt;
*[[Windshield Wipers]]&lt;br /&gt;
*[[Galvanic Cells]]&lt;br /&gt;
*[[Magnetoreception]]&lt;br /&gt;
*[[Memory Storage Devices]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Optics===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Mirrors]]&lt;br /&gt;
*[[Refraction]]&lt;br /&gt;
*[[Quantum Properties of Light]]&lt;br /&gt;
*[[Lasers]]&lt;br /&gt;
*[[Lenses]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
* Commonly used wiki commands [https://en.wikipedia.org/wiki/Help:Cheatsheet Wiki Cheatsheet]&lt;br /&gt;
* A guide to representing equations in math mode [https://en.wikipedia.org/wiki/Help:Displaying_a_formula Wiki Math Mode]&lt;br /&gt;
* A page to keep track of all the physics [[Constants]]&lt;br /&gt;
* A page for review of [[Vectors]] and vector operations&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17276</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17276"/>
		<updated>2015-12-06T00:19:50Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=green)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17275</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17275"/>
		<updated>2015-12-06T00:19:44Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=green)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[http://vpython.org/contents/docs/index.html VPython Docs]&lt;br /&gt;
[https://en.wikipedia.org/wiki/Physical_constant Wikipedia Page on Physical Constants]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17240</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17240"/>
		<updated>2015-12-06T00:17:06Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* VPython Animation Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Box===&lt;br /&gt;
[http://vpython.org/contents/docs/box.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 cube = box(pos=(1,2,3), length=4, height=5, width=6, color=green)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| length&lt;br /&gt;
| number&lt;br /&gt;
| Length of the box&lt;br /&gt;
|-&lt;br /&gt;
| height&lt;br /&gt;
| number&lt;br /&gt;
| Height of the box&lt;br /&gt;
|-&lt;br /&gt;
| width&lt;br /&gt;
| number&lt;br /&gt;
| Width of the box&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the box is facing (facing side is height x width)&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17133</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17133"/>
		<updated>2015-12-06T00:09:35Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* VPython Common Constants */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| km&lt;br /&gt;
| 1e-7&lt;br /&gt;
| km = 1e-7&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| mu_0&lt;br /&gt;
| 1.2566370614e-6&lt;br /&gt;
| mu_0 = 1.2566370614e-6&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| e&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| e = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| eV&lt;br /&gt;
| 1.602176565e-19&lt;br /&gt;
| eV = 1.602176565e-19&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| N_A&lt;br /&gt;
| 6.0221409e23&lt;br /&gt;
| N_A = 6.0221409e23&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| R_p&lt;br /&gt;
| 0.8775e-15&lt;br /&gt;
| R_p = 0.8775e-15&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| E_ionize&lt;br /&gt;
| 3e6&lt;br /&gt;
| E_ionize = 3e6&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| B_Earth&lt;br /&gt;
| 2e-5&lt;br /&gt;
| B_Earth = 2e-5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17046</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=17046"/>
		<updated>2015-12-06T00:00:00Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* VPython Common Constants */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[[Constants]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Constant&lt;br /&gt;
! Common Variable Name&lt;br /&gt;
! Approximate Value&lt;br /&gt;
! Code&lt;br /&gt;
|-&lt;br /&gt;
| Speed of light&lt;br /&gt;
| c&lt;br /&gt;
| 299792458.0&lt;br /&gt;
| c = 299792458.0&lt;br /&gt;
|-&lt;br /&gt;
| Gravitational Constant&lt;br /&gt;
| G&lt;br /&gt;
| 6.67408e-11&lt;br /&gt;
| G = 6.67408e-11&lt;br /&gt;
|-&lt;br /&gt;
| Electron Mass&lt;br /&gt;
| m_e&lt;br /&gt;
| 9.10938356e-31&lt;br /&gt;
| m_e = 9.10938356e-31&lt;br /&gt;
|-&lt;br /&gt;
| Proton Mass&lt;br /&gt;
| m_p&lt;br /&gt;
| 1.6726219e-27&lt;br /&gt;
| m_p = 1.6726219e-27&lt;br /&gt;
|-&lt;br /&gt;
| Neutron Mass&lt;br /&gt;
| m_n&lt;br /&gt;
| 1.674927471e-27&lt;br /&gt;
| m_n = 1.674927471e-27&lt;br /&gt;
|-&lt;br /&gt;
| Electric Constant&lt;br /&gt;
| oofpez&lt;br /&gt;
| 8.9875517873681764e9&lt;br /&gt;
| oofpez = 8.9875517873681764e9&lt;br /&gt;
|-&lt;br /&gt;
| Permitivity of Free Space&lt;br /&gt;
| e0&lt;br /&gt;
| 8.854187817e-12&lt;br /&gt;
| e0 = 8.854187817e-12&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic Constant&lt;br /&gt;
| &amp;lt;math&amp;gt; \frac{\mu_0}{4\pi}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; 1 \times 10^{-7}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; T\cdot m/A&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum Permeability&lt;br /&gt;
| &amp;lt;math&amp;gt; \mu_0&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; 4\pi \times 10^{-7}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; T\cdot m/A &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Proton Charge&lt;br /&gt;
| &amp;lt;math&amp;gt; e&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; 1.6 \times 10^{-19}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; C &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Electron Volt&lt;br /&gt;
| &amp;lt;math&amp;gt; eV &amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; 1.6 \times 10^{-19}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; J &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Avogadro&#039;s Number&lt;br /&gt;
| &amp;lt;math&amp;gt; N_A &amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; 6.02 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; molecules/mole &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Atomic Radius (approximate)&lt;br /&gt;
| &amp;lt;math&amp;gt; R_a &amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; 1 \times 10^{-10}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; m &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Proton Radius&lt;br /&gt;
| &amp;lt;math&amp;gt; R_p &amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; 1 \times 10^{-15}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; m &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;E&#039;&#039; to ionize air&lt;br /&gt;
| &amp;lt;math&amp;gt; E_{ionize} &amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; 3 \times 10^{6}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; V/m &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Earth&#039;s Magnetic Field&lt;br /&gt;
| &amp;lt;math&amp;gt; B_{Earth} &amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; 2 \times 10^{-5}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; T &amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16948</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16948"/>
		<updated>2015-12-05T23:52:18Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== VPython Common Constants ==&lt;br /&gt;
[Constants Source]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16931</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16931"/>
		<updated>2015-12-05T23:50:31Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* Parameters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| number&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16923</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16923"/>
		<updated>2015-12-05T23:50:20Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* Sphere */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| radius&lt;br /&gt;
| radius&lt;br /&gt;
| Radius of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16886</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16886"/>
		<updated>2015-12-05T23:46:42Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* VPython Animation Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Color ===&lt;br /&gt;
[http://vpython.org/contents/docs/color.html Source]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 c = color.red&lt;br /&gt;
==== Basic Colors ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Vector&lt;br /&gt;
! Color&lt;br /&gt;
|-&lt;br /&gt;
| Red&lt;br /&gt;
| (1,0,0)&lt;br /&gt;
| color.red&lt;br /&gt;
|-&lt;br /&gt;
| Yellow&lt;br /&gt;
| (1,1,0)&lt;br /&gt;
| color.yellow&lt;br /&gt;
|-&lt;br /&gt;
| Green&lt;br /&gt;
| (0,1,0)&lt;br /&gt;
| color.green&lt;br /&gt;
|-&lt;br /&gt;
| Orange&lt;br /&gt;
| (1,0.5,0)&lt;br /&gt;
| color.orange&lt;br /&gt;
|-&lt;br /&gt;
| Blue&lt;br /&gt;
| (0,0,1)&lt;br /&gt;
| color.blue&lt;br /&gt;
|-&lt;br /&gt;
| Cyan&lt;br /&gt;
| (0,1,1)&lt;br /&gt;
| color.cyan&lt;br /&gt;
|-&lt;br /&gt;
| Magenta&lt;br /&gt;
| (1,0,1)&lt;br /&gt;
| color.magenta&lt;br /&gt;
|-&lt;br /&gt;
| White&lt;br /&gt;
| (1,1,1)&lt;br /&gt;
| color.white&lt;br /&gt;
|-&lt;br /&gt;
| Black&lt;br /&gt;
| (0,0,0)&lt;br /&gt;
| color.black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16820</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16820"/>
		<updated>2015-12-05T23:39:37Z</updated>

		<summary type="html">&lt;p&gt;Canain: /* VPython Animation Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
[http://vpython.org/contents/docs/sphere.html Advanced]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Arrow ===&lt;br /&gt;
[http://vpython.org/contents/docs/arrow.html Advanced]&lt;br /&gt;
==== Example ====&lt;br /&gt;
 arr = arrow(pos=(1,2,3), axis=(4,5,6), color=color.red)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the object&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Direction the arrow is pointing at&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the object&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the object&lt;br /&gt;
|-&lt;br /&gt;
| shaftwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the shaft (default: 0.1*(length of arrow))&lt;br /&gt;
|-&lt;br /&gt;
| headwidth&lt;br /&gt;
| number&lt;br /&gt;
| Width of the head (default: 2*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| headlength&lt;br /&gt;
| number&lt;br /&gt;
| Length of the head (default: 3*shaftwidth)&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16753</id>
		<title>VPython Reference</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Reference&amp;diff=16753"/>
		<updated>2015-12-05T23:31:35Z</updated>

		<summary type="html">&lt;p&gt;Canain: Created page with &amp;quot;Created by Shuyang Chen  VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.  == VPython Template ==  &amp;lt;no...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Shuyang Chen&lt;br /&gt;
&lt;br /&gt;
VPython reference page for animation functions and constants. This page assumes and only includes basic usage of VPython.&lt;br /&gt;
&lt;br /&gt;
== VPython Template ==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
## Constants&lt;br /&gt;
&lt;br /&gt;
## Initialization&lt;br /&gt;
&lt;br /&gt;
## Loop&lt;br /&gt;
t = 0&lt;br /&gt;
deltat = 1e-10&lt;br /&gt;
end = 10&lt;br /&gt;
&lt;br /&gt;
while t &amp;lt; end:&lt;br /&gt;
    rate(1000)&lt;br /&gt;
    ## Loop Code&lt;br /&gt;
    &lt;br /&gt;
    t += deltat&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VPython Animation Functions ==&lt;br /&gt;
&lt;br /&gt;
=== Sphere ===&lt;br /&gt;
==== Example ====&lt;br /&gt;
 ball = sphere(pos=(1,2,3), radius=0.4, color=color.blue)&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| pos&lt;br /&gt;
| vector&lt;br /&gt;
| Position of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| axis&lt;br /&gt;
| vector&lt;br /&gt;
| Orientation of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| color&lt;br /&gt;
| Color of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| opacity&lt;br /&gt;
| number&lt;br /&gt;
| Opacity of the sphere&lt;br /&gt;
|-&lt;br /&gt;
| make_trail&lt;br /&gt;
| boolean&lt;br /&gt;
| Whether or not to leave behind a trail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Canain</name></author>
	</entry>
</feed>