mirror of
https://github.com/nature-of-code/noc-book-2
synced 2024-11-17 07:49:05 +01:00
1060 lines
No EOL
73 KiB
HTML
1060 lines
No EOL
73 KiB
HTML
<section data-type="chapter">
|
||
<h1 id="chapter-1-vectors">Chapter 1. Vectors</h1>
|
||
<div class="chapter-opening-quote">
|
||
<blockquote data-type="epigraph">
|
||
<p>I’m committing crimes with both direction and magnitude.</p>
|
||
<div class="chapter-opening-quote-source">
|
||
<p>—Vector, <em>Despicable Me</em></p>
|
||
</div>
|
||
</blockquote>
|
||
</div>
|
||
<div class="chapter-opening-figure">
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_1.png" alt="">
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
<h3 id="marshall-islands-stick-chart-on-display-at-the-berkeley-art-museum-photo-by-jim-heaphy">Marshall Islands stick chart on display at the Berkeley Art Museum (photo by Jim Heaphy)</h3>
|
||
<p>The stick chart is a navigational tool crafted by the indigenous people of the Marshall Islands, located in the central Pacific Ocean. This ancient tool was made by carefully tying together the midribs of coconut fronds. Shell markings on the chart signify the locations of islands in the region. The layout of the fronds and shells serves as a geographical guide, offering an abstract representation of vectors that capture the ocean swell patterns and their directional flow.</p>
|
||
</div>
|
||
<p>This book is all about looking at the world around us and developing ways to simulate it with code. In this first part of the book, I’ll start by looking at basic physics: how an apple falls from a tree, how a pendulum swings in the air, how Earth revolves around the sun, and so on. Absolutely everything contained within the book’s first five chapters requires the use of the most basic building block for programming motion, the <strong>vector</strong>. And so that’s where I’ll begin the story.</p>
|
||
<p>The word <em>vector</em> can mean a lot of things. It’s the name of a New Wave rock band formed in Sacramento, California, in the early 1980s, and the name of a breakfast cereal manufactured by Kellogg’s Canada. In the field of epidemiology, a vector is an organism that transmits infection from one host to another. In the C++ programming language, a vector (<code>std::vector</code>) is an implementation of a dynamically resizable array data structure.</p>
|
||
<p>While all these definitions are worth exploring, they’re not the focus here. Instead, this chapter dives into the <strong>Euclidean vector</strong> (named for the Greek mathematician Euclid), also known as the <strong>geometric vector</strong>. When you see the term <em>vector</em> in this book, you can assume it refers to a Euclidean vector, defined as an entity that has both magnitude and direction.</p>
|
||
<div class="half-width-right">
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_2.png" alt="Figure 1.1: A vector represented as an arrow drawn from point A to point B">
|
||
<figcaption>Figure 1.1: A vector represented as an arrow drawn from point A to point B</figcaption>
|
||
</figure>
|
||
</div>
|
||
<p>A vector is typically drawn as an arrow, as in Figure 1.1. The vector’s direction is indicated by where the arrow is pointing, and its magnitude by the length of the arrow.</p>
|
||
<p>The vector in Figure 1.1 is drawn as an arrow from point A to point B. It serves as an instruction for how to travel from A to B.</p>
|
||
<h2 id="the-point-of-vectors">The Point of Vectors</h2>
|
||
<p>Before diving into more details about vectors, I’d like to create a p5.js example that demonstrates why you should care about vectors in the first place. If you’ve watched any beginner p5.js tutorials, read any introductory p5.js textbooks, or taken an introduction to creative coding course (and hopefully you’ve done one of these things to help prepare you for this book!), you probably, at one point or another, learned how to write a bouncing ball sketch.</p>
|
||
<div data-type="example">
|
||
<h3 id="example-11-bouncing-ball-with-no-vectors">Example 1.1: Bouncing Ball with No Vectors</h3>
|
||
<figure>
|
||
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/oadKdOndU" data-example-path="examples/01_vectors/example_1_1_bouncing_ball_with_no_vectors"><img src="examples/01_vectors/example_1_1_bouncing_ball_with_no_vectors/screenshot.png"></div>
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
</div>
|
||
<pre class="codesplit" data-code-language="javascript">// Variables for position and speed of ball
|
||
let x = 100;
|
||
let y = 100;
|
||
let xspeed = 2.5;
|
||
let yspeed = 2;
|
||
|
||
function setup() {
|
||
createCanvas(640, 240);
|
||
background(255);
|
||
}
|
||
|
||
function draw() {
|
||
background(255);
|
||
|
||
// Move the ball according to its speed.
|
||
x = x + xspeed;
|
||
y = y + yspeed;
|
||
|
||
// Check for bouncing.
|
||
if (x > width || x < 0) {
|
||
xspeed = xspeed * -1;
|
||
}
|
||
if (y > height || y < 0) {
|
||
yspeed = yspeed * -1;
|
||
}
|
||
|
||
stroke(0);
|
||
fill(127);
|
||
// Draw the ball at the position (<em>x</em>, <em>y</em>).
|
||
circle(x, y, 48);
|
||
}</pre>
|
||
<p>In this example, there’s a flat, 2D world—a blank canvas—with a circular shape (a “ball”) traveling around. This ball has properties like position and speed that are represented in the code as variables:</p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th style="width: 200px;">Property</th>
|
||
<th>Variable Names</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>Position</td>
|
||
<td><code>x</code> and <code>y</code></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Speed</td>
|
||
<td><code>xspeed</code> and <code>yspeed</code></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<p>In a more sophisticated sketch, you might have many more variables representing other properties of the ball and its environment:</p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th style="width: 200px;">Property</th>
|
||
<th>Variable Names</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>Acceleration</td>
|
||
<td><code>xacceleration</code> and <code>yacceleration</code></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Target position</td>
|
||
<td><code>xtarget</code> and <code>ytarget</code></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Wind</td>
|
||
<td><code>xwind</code> and <code>ywind</code></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Friction</td>
|
||
<td><code>xfriction</code> and <code>yfriction</code></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<p>You might notice that for every concept in this world (wind, position, acceleration, and the like), there are two variables. And this is only a 2D world. In a three-dimensional (3D) world, you’d need three variables for each property: <code>x</code>, <code>y</code>, and <code>z</code> for position; <code>xspeed</code>, <code>yspeed</code>, and <code>zspeed</code> for speed; and so on. Wouldn’t it be nice to simplify the code to use fewer variables? Instead of starting the program with something like this</p>
|
||
<pre class="codesplit" data-code-language="javascript">let x;
|
||
let y;
|
||
let xspeed;
|
||
let yspeed;</pre>
|
||
<p>you’d be able to start it with something like this:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let position;
|
||
let speed;</pre>
|
||
<p>Thinking of the ball’s properties as vectors instead of a loose collection of separate values will allow you to do just that.</p>
|
||
<p>Taking this first step toward using vectors won’t let you do anything new or magically turn a p5.js sketch into a full-on physics simulation. However, using vectors will help organize your code and provide a set of methods for common mathematical operations you’ll need over and over and over again while programming motion.</p>
|
||
<p>As an introduction to vectors, I’m going to stick to two dimensions for quite some time (at least the first several chapters). All these examples can be fairly easily extended to three dimensions (and the class I’ll use, <code>p5.Vector</code>, allows for three dimensions). However, for the purposes of learning the fundamentals, the added complexity of the third dimension would be a distraction.</p>
|
||
<h2 id="vectors-in-p5js">Vectors in p5.js</h2>
|
||
<p>Think of a vector as the difference between two points, or as instructions for walking from one point to another. For example, Figure 1.2 shows some vectors and possible interpretations of them.</p>
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_3.png" alt="Figure 1.2: Three example vectors drawn as arrows, with accompanying instructions for walking in north, south, east, or west directions">
|
||
<figcaption>Figure 1.2: Three example vectors drawn as arrows, with accompanying instructions for walking in north, south, east, or west directions</figcaption>
|
||
</figure>
|
||
<p>These vectors could be thought of in the following way:</p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>Vector</th>
|
||
<th>Instructions</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>(–15, 3)</td>
|
||
<td>Walk 15 steps west; turn and walk 3 steps north.</td>
|
||
</tr>
|
||
<tr>
|
||
<td>(3, 4)</td>
|
||
<td>Walk 3 steps east; turn and walk 4 steps north.</td>
|
||
</tr>
|
||
<tr>
|
||
<td>(2, –1)</td>
|
||
<td>Walk 2 steps east; turn and walk 1 step south.</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<p>You’ve probably already thought this way when programming motion. For every frame of animation (a single cycle through a p5.js <code>draw()</code> loop), you instruct each object to reposition itself to a new spot a certain number of pixels away horizontally and a certain number of pixels away vertically. This instruction is essentially a vector, as in Figure 1.3; it has both magnitude (how far away did you travel?) and direction (which way did you go?).</p>
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_4.png" alt="Figure 1.3: A vector showing the number of horizontal and vertical steps to go from a position to a new position">
|
||
<figcaption>Figure 1.3: A vector showing the number of horizontal and vertical steps to go from a position to a new position</figcaption>
|
||
</figure>
|
||
<p>The vector sets the object’s <strong>velocity</strong>, defined as the rate of change of the object’s position with respect to time. In other words, the velocity vector determines the object’s new position for every frame of the animation, according to this basic algorithm for motion: <em>the new position is equal to the result of applying the velocity to the current position</em>.</p>
|
||
<p>If velocity is a vector (the difference between two points), what about position? Is it a vector too? Technically, you could argue that position is not a vector, since it’s not describing how to move from one point to another; it’s describing a single point in space. Nevertheless, another way to describe a position is as the path taken from the origin—point (0, 0)—to the current point. When you think of position in this way, it becomes a vector, just like velocity, as in Figure 1.4.</p>
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_5.png" alt="Figure 1.4: A computer graphics window with (0, 0) in the top left, showing a position vector and a velocity vector">
|
||
<figcaption>Figure 1.4: A computer graphics window with (0, 0) in the top left, showing a position vector and a velocity vector</figcaption>
|
||
</figure>
|
||
<p>In Figure 1.4, the vectors are placed on a computer graphics canvas. Unlike in Figure 1.2, the origin point (0, 0) isn’t at the center; it’s at the top-left corner. And instead of north, south, east, and west, there are positive and negative directions along the x- and y-axes (with y pointing down in the positive direction).</p>
|
||
<p>Let’s examine the underlying data for both position and velocity. In the bouncing ball example, I originally had the following variables:</p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>Property</th>
|
||
<th>Variable Names</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>Position</td>
|
||
<td><code>x</code>, <code>y</code></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Velocity</td>
|
||
<td><code>xspeed</code>, <code>yspeed</code></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<p>Now I’ll treat position and velocity as vectors instead, each represented by an object with <code>x</code> and <code>y</code> attributes. If I were to write a <code>Vector</code> class myself, I’d start with something like this:</p>
|
||
<pre class="codesplit" data-code-language="javascript">class Vector {
|
||
constructor(x, y) {
|
||
this.x = x;
|
||
this.y = y;
|
||
}
|
||
}</pre>
|
||
<p>Notice that this class is designed to store the same data as before—two floating-point numbers per vector, an <code>x</code> value and a <code>y</code> value. At its core, a <code>Vector</code> object is just a convenient way to store two values (or three, as you’ll see in 3D examples) under one name.</p>
|
||
<p>As it happens, p5.js already has a built-in <code>p5.Vector</code> class, so I don’t need to write one myself. And so this</p>
|
||
<pre class="codesplit" data-code-language="javascript">let x = 100;
|
||
let y = 100;
|
||
let xspeed = 1;
|
||
let yspeed = 3.3;</pre>
|
||
<p>becomes this:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let position = createVector(100, 100);
|
||
let velocity = createVector(1, 3.3);</pre>
|
||
<p>Notice that the <code>position</code> and <code>velocity</code> vector objects aren’t created as you might expect, by invoking a constructor function. Instead of writing <code>new p5.Vector(x, y)</code>, I’ve called <code>createVector(x, y)</code>. The <code>createVector()</code> function is included in p5.js as a helper function to take care of details behind the scenes upon creation of the vector. Except in special circumstances, you should always create <code>p5.Vector</code> objects with <code>createVector()</code>. I should note that p5.js functions such as <code>createVector()</code> can’t be executed outside of <code>setup()</code> or <code>draw()</code>, since the library won’t yet be loaded. I’ll demonstrate how to address this in Example 1.2.</p>
|
||
<p>Now that I have two vector objects (<code>position</code> and <code>velocity</code>), I’m ready to implement the vector-based algorithm for motion: <strong>position = position + velocity</strong>. In Example 1.1, without vectors, the code reads as follows:</p>
|
||
<pre class="codesplit" data-code-language="javascript">// Add each speed to each position.
|
||
x = x + xspeed;
|
||
y = y + yspeed;</pre>
|
||
<p>In an ideal world, I would be able to rewrite this as shown here:</p>
|
||
<pre class="codesplit" data-code-language="javascript">// Add the velocity vector to the position vector.
|
||
position = position + velocity;</pre>
|
||
<p>In JavaScript, however, the addition operator <code>+</code> is reserved for primitive values (integers, floats, and the like). JavaScript doesn’t know how to add two <code>p5.Vector</code> objects together any more than it knows how to add two <code>p5.Font</code> objects or <code>p5.Image</code> objects. Fortunately, the <code>p5.Vector</code> class includes methods for common mathematical operations.</p>
|
||
<h2 id="vector-addition">Vector Addition</h2>
|
||
<p>Before I continue working with the <code>p5.Vector</code> class and the <code>add()</code> method, let’s examine vector addition by using the notation found in math and physics textbooks. Vectors are typically written either in boldface type or with an arrow on top. For the purposes of this book, to distinguish a <strong>vector</strong> (with magnitude and direction) from a <strong>scalar</strong> (a single value, such as an integer or a floating-point number), I’ll use the arrow notation:</p>
|
||
<ul>
|
||
<li>Vector: <span data-type="equation">\vec{v}</span></li>
|
||
<li>Scalar: <span data-type="equation">{x}</span></li>
|
||
</ul>
|
||
<p>Let’s say I have the two vectors shown in Figure 1.5.</p>
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_6.png" alt="Figure 1.5: Two vectors
|
||
\vec{u} and \vec{v} depicted as triangles">
|
||
<figcaption>Figure 1.5: Two vectors <span data-type="equation">\vec{u}</span> and <span data-type="equation">\vec{v}</span> depicted as triangles</figcaption>
|
||
</figure>
|
||
<p>Each vector has two <strong>components</strong>, an <em>x</em> and a <em>y</em>. To add the two vectors together, add both x-components and y-components to create a new vector, as in Figure 1.6.</p>
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_7.png" alt="Figure 1.6: Adding vectors by combining the x- and y-components">
|
||
<figcaption>Figure 1.6: Adding vectors by combining the x- and y-components</figcaption>
|
||
</figure>
|
||
<p>In other words, <span data-type="equation">\vec{w} = \vec{u} + \vec{v}</span> can be written as follows:</p>
|
||
<div data-type="equation">w_x = u_x + v_x</div>
|
||
<div data-type="equation">w_y = u_y + v_y</div>
|
||
<p>Then, replacing <span data-type="equation">\vec{u}</span> and <span data-type="equation">\vec{v}</span> with their values from Figure 1.6, you get this:</p>
|
||
<div data-type="equation">w_x = 5 + 3 = 8</div>
|
||
<div data-type="equation">w_y = 2 + 4 = 6</div>
|
||
<p>Finally, write the result as a vector:</p>
|
||
<div data-type="equation">\vec{w} = (8,6)</div>
|
||
<div data-type="note">
|
||
<h3 id="addition-properties-with-vectors">Addition Properties with Vectors</h3>
|
||
<p>Addition with vectors follows the same algebraic rules as with real numbers.</p>
|
||
<p>The commutative rule: <span data-type="equation">\vec{u} + \vec{v} = \vec{v} + \vec{u}</span></p>
|
||
<p>The associative rule: <span data-type="equation">\vec{u} + (\vec{v} + \vec{w}) = (\vec{u} + \vec{v}) + \vec{w}</span></p>
|
||
<p>Fancy terminology and symbols aside, these rules boil down to quite a simple concept: the result is the same no matter the order in which the vectors are added. Replace the vectors with regular numbers (scalars), and these rules are easy to see:</p>
|
||
<p>Commutative: <span data-type="equation">3 + 2 = 2 + 3</span></p>
|
||
<p>Associative: <span data-type="equation">(3 + 2) + 1 = 3 + (2 + 1)</span></p>
|
||
</div>
|
||
<p>Now that I’ve covered the theory behind adding two vectors together, I can turn to adding vector objects in p5.js. Imagine again that I’m creating my own <code>Vector</code> class. I could give it a function called <code>add()</code> that takes another <code>Vector</code> object as its argument:</p>
|
||
<pre class="codesplit" data-code-language="javascript">class Vector {
|
||
|
||
constructor(x, y) {
|
||
this.x = x;
|
||
this.y = y;
|
||
}
|
||
|
||
//{!4} New! A function to add another vector to this vector. Add the x-components and the y-components separately.
|
||
<strong>add(v) {
|
||
this.x = this.x + v.x;
|
||
this.y = this.y + v.y;
|
||
}</strong>
|
||
}</pre>
|
||
<p>The function looks up the x- and y-components of the two vectors and adds them separately. This is exactly how the built-in <code>p5.Vector</code> class’s <code>add()</code> method is written too. Knowing how it works, I can now return to the bouncing ball example with its <strong>position + velocity</strong> algorithm and implement vector addition:</p>
|
||
<pre class="codesplit" data-code-language="javascript">// This does not work!
|
||
<s>position = position + velocity;</s>
|
||
// Add the velocity to the position.
|
||
position.add(velocity);</pre>
|
||
<p>Now you have what you need to rewrite the bouncing ball example with vectors.</p>
|
||
<div data-type="example">
|
||
<h3 id="example-12-bouncing-ball-with-vectors">Example 1.2: Bouncing Ball with Vectors!</h3>
|
||
<figure>
|
||
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/qU5oPJijX" data-example-path="examples/01_vectors/example_1_2_bouncing_ball_with_vectors"><img src="examples/01_vectors/example_1_2_bouncing_ball_with_vectors/screenshot.png"></div>
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
</div>
|
||
<pre class="codesplit" data-code-language="javascript">// Instead of a bunch of floats, you now have just two variables.
|
||
<strong>let position;
|
||
let velocity;</strong>
|
||
|
||
function setup() {
|
||
createCanvas(640, 240);
|
||
// Note that <code>createVector()</code> has to be called inside <code>setup()</code>.
|
||
<strong>position = createVector(100, 100);
|
||
velocity = createVector(2.5, 2);</strong>
|
||
}
|
||
|
||
function draw() {
|
||
background(255);
|
||
<strong>position.add(velocity);</strong>
|
||
|
||
// You still sometimes need to refer to the individual components of a <code>p5.Vector</code> and can do so using the dot syntax: <code>position.x</code>, <code>velocity.y</code>, and so forth.
|
||
<strong>if (position.x > width || position.x < 0) {
|
||
velocity.x = velocity.x * -1;
|
||
}
|
||
if (position.y > height || position.y < 0) {
|
||
velocity.y = velocity.y * -1;
|
||
}</strong>
|
||
|
||
stroke(0);
|
||
fill(127);
|
||
circle(position.x, position.y, 48);
|
||
}</pre>
|
||
<p>At this stage, you might feel somewhat disappointed. After all, these changes may appear to have made the code more complicated than the original version. While this is a perfectly reasonable and valid critique, it’s important to understand that the power of programming with vectors hasn’t been fully realized just yet. Looking at a bouncing ball and only implementing vector addition is just the first step. As I move forward into a more complex world of multiple objects and multiple <em>forces</em> (which I’ll introduce in Chapter 2) acting on those objects, the benefits of vectors will become more apparent.</p>
|
||
<p>I should, however, note an important aspect of the transition to programming with vectors. Even though I’m using <code>p5.Vector</code> objects to encapsulate two values—the <code>x</code> and <code>y</code> of the ball’s position or the <code>x</code> and <code>y</code> of the ball’s velocity—under a single variable name, I’ll still often need to refer to the x- and y-components of each vector individually.</p>
|
||
<p>The <code>circle()</code> function doesn’t allow for a <code>p5.Vector</code> object as an argument. A circle can be drawn with only two scalar values, an x-coordinate and a y-coordinate. And so I must dig into the <code>p5.Vector</code> object and pull out the x- and y-components by using object-oriented dot syntax:</p>
|
||
<pre class="codesplit" data-code-language="javascript"><s>circle(position, 48);</s>
|
||
circle(position.x, position.y, 48);</pre>
|
||
<p>The same issue arises when testing whether the circle has reached the edge of the window. In this case, I need to access the individual components of both vectors, <code>position</code> and <code>velocity</code>:</p>
|
||
<pre class="codesplit" data-code-language="javascript">if ((position.x > width) || (position.x < 0)) {
|
||
velocity.x = velocity.x * -1;
|
||
}</pre>
|
||
<p>It may not always be obvious when to directly access an object’s properties versus when to reference the object as a whole or use one of its methods. The goal of this chapter (and most of this book) is to help you distinguish between these scenarios by providing a variety of examples and use cases.</p>
|
||
<div data-type="exercise">
|
||
<h3 id="exercise-11">Exercise 1.1</h3>
|
||
<p>Take one of the walker examples from <a href="/random#">Chapter 0</a> and convert it to use vectors.</p>
|
||
</div>
|
||
<div data-type="exercise">
|
||
<h3 id="exercise-12">Exercise 1.2</h3>
|
||
<p>Find something else you’ve previously made in p5.js using separate <code>x</code> and <code>y</code> variables, and use vectors instead.</p>
|
||
</div>
|
||
<div data-type="exercise">
|
||
<h3 id="exercise-13">Exercise 1.3</h3>
|
||
<p>Extend Example 1.2 into 3D. Can you get a sphere to bounce around a box?</p>
|
||
</div>
|
||
<h2 id="more-vector-math">More Vector Math</h2>
|
||
<p>Addition was really just the first step. Many mathematical operations are commonly used with vectors. Here’s a comprehensive table of the operations available as methods in the <code>p5.Vector</code> class. Remember, these are not stand-alone functions, but rather methods associated with the <code>p5.Vector</code> class. When you see the word <em>this</em> in the following table, it refers to the specific vector the method is operating on.</p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>Method</th>
|
||
<th>Task</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>
|
||
<pre><code>add()</code></pre>
|
||
</td>
|
||
<td>Adds a vector to this vector</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>sub()</code></pre>
|
||
</td>
|
||
<td>Subtracts a vector from this vector</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>mult()</code></pre>
|
||
</td>
|
||
<td>Scales this vector with multiplication</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>div()</code></pre>
|
||
</td>
|
||
<td>Scales this vector with division</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>mag()</code></pre>
|
||
</td>
|
||
<td>Returns the magnitude of this vector</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>setMag()</code></pre>
|
||
</td>
|
||
<td>Sets the magnitude of this vector</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>normalize()</code></pre>
|
||
</td>
|
||
<td>Normalizes this vector to a unit length of 1</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>limit()</code></pre>
|
||
</td>
|
||
<td>Limits the magnitude of this vector</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>heading()</code></pre>
|
||
</td>
|
||
<td>Returns the 2D heading of this vector expressed as an angle</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>rotate()</code></pre>
|
||
</td>
|
||
<td>Rotates this 2D vector by an angle</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>lerp()</code></pre>
|
||
</td>
|
||
<td>Linear interpolates to another vector</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>dist()</code></pre>
|
||
</td>
|
||
<td>Returns the Euclidean distance between two vectors (considered as points)</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>angleBetween()</code></pre>
|
||
</td>
|
||
<td>Finds the angle between two vectors</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>dot()</code></pre>
|
||
</td>
|
||
<td>Returns the dot product of two vectors</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>cross()</code></pre>
|
||
</td>
|
||
<td>Returns the cross product of two vectors (relevant only in three dimensions)</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>random2D()</code></pre>
|
||
</td>
|
||
<td>Returns a random 2D vector</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<pre><code>random3D()</code></pre>
|
||
</td>
|
||
<td>Returns a random 3D vector</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<p>I’ll go through a few of the key methods now. As the examples get more sophisticated in later chapters, I’ll continue to reveal more details.</p>
|
||
<h3 id="vector-subtraction">Vector Subtraction</h3>
|
||
<div class="half-width-right">
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_8.png" alt="Figure 1.7: The relationship between \vec{v} and -\vec{v} ">
|
||
<figcaption>Figure 1.7: The relationship between <span data-type="equation">\vec{v}</span> and <span data-type="equation">-\vec{v}</span> </figcaption>
|
||
</figure>
|
||
</div>
|
||
<p>Having already covered addition, I’ll now turn to subtraction. This one’s not so bad; just take the plus sign and replace it with a minus! Before tackling subtraction itself, however, consider what it means for a vector <span data-type="equation">\vec{v}</span> to become <span data-type="equation">-\vec{v}</span>. The negative version of the scalar 3 is –3. A negative vector is similar: the polarity of each of the vector’s components is inverted. So if <span data-type="equation">\vec{v}</span> has the components (<em>x</em>, <em>y</em>), then <span data-type="equation">-\vec{v}</span> is (–<em>x</em>, –<em>y</em>). Visually, this results in an arrow of the same length as the original vector pointing in the opposite direction, as depicted in Figure 1.7.</p>
|
||
<p>Subtraction, then, is the same as addition, only with the second vector in the equation treated as a negative version of itself:</p>
|
||
<div data-type="equation">\vec{u} - \vec{v} = \vec{u} + -\vec{v}</div>
|
||
<p>Just as vectors are added by placing them “tip to tail”—that is, aligning the tip (or end point) of one vector with the tail (or start point) of the next—vectors are subtracted by reversing the direction of the second vector and placing it at the end of the first, as in Figure 1.8.</p>
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_9.png" alt="Figure 1.8: Vector subtraction places one vector at the end of another, but pointing in the opposite direction.">
|
||
<figcaption>Figure 1.8: Vector subtraction places one vector at the end of another, but pointing in the opposite direction.</figcaption>
|
||
</figure>
|
||
<p>To actually solve the subtraction, take the difference of the vectors’ components. That is, <span data-type="equation">\vec{w} = \vec{u} - \vec{v}</span> can be written as shown here:</p>
|
||
<div data-type="equation">w_x = u_x - v_x</div>
|
||
<div data-type="equation">w_y = u_y - v_y</div>
|
||
<p>Inside <code>p5.Vector</code>, the code reads as follows:</p>
|
||
<pre class="codesplit" data-code-language="javascript">sub(v) {
|
||
this.x = this.x - v.x;
|
||
this.y = this.y - v.y;
|
||
}</pre>
|
||
<p>The following example demonstrates vector subtraction by taking the difference between two points (which are treated as vectors): the mouse position and the center of the window.</p>
|
||
<div data-type="example">
|
||
<h3 id="example-13-vector-subtraction">Example 1.3: Vector Subtraction</h3>
|
||
<figure>
|
||
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/HtXiElQbC" data-example-path="examples/01_vectors/example_1_3_vector_subtraction"><img src="examples/01_vectors/example_1_3_vector_subtraction/screenshot.png"></div>
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
</div>
|
||
<pre class="codesplit" data-code-language="javascript">function draw() {
|
||
background(255);
|
||
// Two vectors, one for the mouse location and one for the center of the window
|
||
let mouse = createVector(mouseX, mouseY);
|
||
let center = createVector(width / 2, height / 2);
|
||
// Draw the original two vectors.
|
||
stroke(200);
|
||
strokeWeight(4);
|
||
line(0, 0, mouse.x, mouse.y);
|
||
line(0, 0, center.x, center.y);
|
||
// Vector subtraction!
|
||
mouse.sub(center);
|
||
// Draw a line to represent the result of subtraction.
|
||
// Notice that I move the origin with <code>translate()</code> to place the vector.
|
||
stroke(0);
|
||
translate(width / 2, height / 2);
|
||
line(0, 0, mouse.x, mouse.y);
|
||
}</pre>
|
||
<p>Note the use of <code>translate()</code> to visualize the resulting vector as a line from the center <code>(width / 2, height / 2)</code> to the mouse. Vector subtraction is its own kind of translation, moving the “origin” of a position vector. Here, by subtracting the center vector from the mouse vector, I’m effectively moving the starting point of the resulting vector to the center of the canvas. Therefore, I also need to move the origin by using <code>translate()</code>. Without this, the line would be drawn from the top-left corner, and the visual connection wouldn’t be as clear.</p>
|
||
<h3 id="vector-multiplication-and-division">Vector Multiplication and Division</h3>
|
||
<div class="half-width-right">
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_10.png" alt="Figure 1.9: Scaling a vector with multiplication">
|
||
<figcaption>Figure 1.9: Scaling a vector with multiplication</figcaption>
|
||
</figure>
|
||
</div>
|
||
<p>Moving on to multiplication, you have to think a bit differently. Multiplying a vector typically refers to the process of <strong>scaling</strong> a vector. If I want to scale a vector to twice its size or one-third of its size, while leaving its direction the same, I would say, “Multiply the vector by 2” or “Multiply the vector by 1/3.” Unlike with addition and subtraction, I’m multiplying the vector by a scalar (a single number), not by another vector. Figure 1.9 illustrates how to scale a vector by a factor of 3.</p>
|
||
<p>To scale a vector, multiply each component (<em>x</em> and <em>y</em>) by a scalar. That is, <span data-type="equation">\vec{w} = \vec{u} \times n</span> can be written as shown here:</p>
|
||
<div data-type="equation">w_x = u_x \times n</div>
|
||
<div data-type="equation">w_y = u_y \times n</div>
|
||
<p>As an example, say <span data-type="equation">\vec{u} = (-3, 7)</span> and <span data-type="equation">n = 3</span>. You can calculate <span data-type="equation">\vec{w} = \vec{u} \times n</span> as follows:</p>
|
||
<div data-type="equation">w_x = -3 \times 3</div>
|
||
<div data-type="equation">w_y = 7 \times 3</div>
|
||
<div data-type="equation">\vec{w} = (-9,21)</div>
|
||
<p>This is exactly how the <code>mult()</code> function inside the <code>p5.Vector</code> class works:</p>
|
||
<div class="avoid-break">
|
||
<pre class="codesplit" data-code-language="javascript">mult(n) {
|
||
// The components of the vector are multiplied by a number.
|
||
this.x = this.x * n;
|
||
this.y = this.y * n;
|
||
}</pre>
|
||
</div>
|
||
<p>Implementing multiplication in code is as simple as the following:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let u = createVector(-3, 7);
|
||
// This <code>p5.Vector</code> is now three times the size and is equal to (–9, 21). See Figure 1.9.
|
||
u.mult(3);</pre>
|
||
<p>Example 1.4 illustrates vector multiplication by drawing a line between the mouse and the center of the canvas, as in the previous example, and then scaling that line by 0.5.</p>
|
||
<div data-type="example">
|
||
<h3 id="example-14-multiplying-a-vector">Example 1.4: Multiplying a Vector</h3>
|
||
<figure>
|
||
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/VQfwqpDlv" data-example-path="examples/01_vectors/example_1_4_vector_multiplication"><img src="examples/01_vectors/example_1_4_vector_multiplication/screenshot.png"></div>
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
</div>
|
||
<pre class="codesplit" data-code-language="javascript">function draw() {
|
||
background(255);
|
||
|
||
let mouse = createVector(mouseX, mouseY);
|
||
let center = createVector(width / 2, height / 2);
|
||
mouse.sub(center);
|
||
|
||
translate(width / 2, height / 2);
|
||
strokeWeight(2);
|
||
stroke(200);
|
||
line(0, 0, mouse.x, mouse.y);
|
||
|
||
// Multiplying a vector! The vector is now half its original size (multiplied by 0.5).
|
||
mouse.mult(0.5);
|
||
|
||
stroke(0);
|
||
strokeWeight(4);
|
||
line(0, 0, mouse.x, mouse.y);
|
||
}</pre>
|
||
<p>The resulting vector is half its original size. Rather than multiplying the vector by 0.5, I could achieve the same effect by dividing the vector by 2, as in Figure 1.10.</p>
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_11.png" alt="Figure 1.10: Scaling a vector with division">
|
||
<figcaption>Figure 1.10: Scaling a vector with division</figcaption>
|
||
</figure>
|
||
<p>Vector division, then, works just like vector multiplication—just replace the multiplication sign (<code>*</code>) with the division sign (<code>/</code>). Here’s how the <code>p5.Vector</code> class implements the <code>div()</code> function:</p>
|
||
<pre class="codesplit" data-code-language="javascript">div(n) {
|
||
this.x = this.x / n;
|
||
this.y = this.y / n;
|
||
}</pre>
|
||
<p>And here’s how to use the <code>div()</code> function in a sketch:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let u = createVector(8, -4);
|
||
// Dividing a vector! The vector is now half its original size (divided by 2).
|
||
u.div(2);</pre>
|
||
<p>This takes the vector <code>u</code> and divides it by 2.</p>
|
||
<div data-type="note">
|
||
<h3 id="more-number-properties-with-vectors">More Number Properties with Vectors</h3>
|
||
<p>As with addition, basic algebraic rules of multiplication apply to vectors.</p>
|
||
<p>The associative rule: <span data-type="equation">(n \times m) \times \vec{v} = n \times (m \times \vec{v})</span></p>
|
||
<p>The distributive rule with two scalars, one vector: <span data-type="equation">(n + m) \times \vec{v} = (n \times \vec{v}) + (m \times \vec{v})</span></p>
|
||
<p>The distributive rule with two vectors, one scalar: <span data-type="equation">(\vec{u} + \vec{v}) \times n = (\vec{u} \times n) + (\vec{v} \times n)</span></p>
|
||
</div>
|
||
<h2 id="vector-magnitude">Vector Magnitude</h2>
|
||
<div class="half-width-right">
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_12.png" alt="Figure 1.11: The length, or magnitude, of a vector \vec{v} is often written as \lVert\vec{v}\rVert.">
|
||
<figcaption>Figure 1.11: The length, or magnitude, of a vector <span data-type="equation">\vec{v}</span> is often written as <span data-type="equation">\lVert\vec{v}\rVert</span>.</figcaption>
|
||
</figure>
|
||
</div>
|
||
<p>Multiplication and division, as just described, alter the length of a vector without affecting its direction. Perhaps you’re wondering, “Okay, so how do I know what the length of a vector is? I know the vector’s components (<em>x</em> and <em>y</em>), but how long (in pixels) is the actual arrow?” Understanding how to calculate the length of a vector, also known as its <strong>magnitude</strong>, is incredibly useful and important.</p>
|
||
<div class="half-width-right">
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_13.png" alt="Figure 1.12: The Pythagorean theorem calculates the length of a vector by using its components.">
|
||
<figcaption>Figure 1.12: The Pythagorean theorem calculates the length of a vector by using its components.</figcaption>
|
||
</figure>
|
||
</div>
|
||
<p>Notice in Figure 1.11 that the vector, drawn as an arrow and two components (<em>x</em> and <em>y</em>), creates a right triangle. The sides are the components, and the hypotenuse is the arrow. We’re lucky to have this right triangle, because once upon a time, a Greek mathematician named Pythagoras discovered a lovely formula that describes the relationship between the sides and hypotenuse of a right triangle. This formula, the <strong>Pythagorean theorem</strong>, is <span data-type="equation">a^2 + b^2 = c^2</span> (see Figure 1.12).</p>
|
||
<p>Armed with this formula, we can now compute the magnitude of <span data-type="equation">\vec{v}</span> as follows:</p>
|
||
<div data-type="equation">||\vec{v}||=\sqrt{v_x * v_x + v_y * v_y}</div>
|
||
<p>In the <code>p5.Vector</code> class, the <code>mag()</code> function is defined using the same formula:</p>
|
||
<div class="avoid-break">
|
||
<pre class="codesplit" data-code-language="javascript">mag() {
|
||
return sqrt(this.x * this.x + this.y * this.y);
|
||
}</pre>
|
||
</div>
|
||
<p>Here’s a sketch that calculates the magnitude of the vector between the mouse and the center of the canvas, and visualizes it as a rectangle drawn across the top of the window.</p>
|
||
<div data-type="example">
|
||
<h3 id="example-15-vector-magnitude">Example 1.5: Vector Magnitude</h3>
|
||
<figure>
|
||
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/rld_CtioUU" data-example-path="examples/01_vectors/example_1_5_vector_magnitude"><img src="examples/01_vectors/example_1_5_vector_magnitude/screenshot.png"></div>
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
</div>
|
||
<pre class="codesplit" data-code-language="javascript">function setup() {
|
||
createCanvas(640, 240);
|
||
}
|
||
|
||
function draw() {
|
||
background(255);
|
||
|
||
let mouse = createVector(mouseX, mouseY);
|
||
let center = createVector(width / 2, height / 2);
|
||
mouse.sub(center);
|
||
|
||
// The magnitude (that is, length) of a vector can be accessed via the <code>mag()</code> method. Here it is used as the width of a rectangle drawn at the top of the window.
|
||
let m = mouse.mag();
|
||
fill(0);
|
||
rect(0, 0, m, 10);
|
||
|
||
translate(width / 2, height / 2);
|
||
line(0, 0, mouse.x, mouse.y);
|
||
}</pre>
|
||
<p>Notice that the magnitude (length) of a vector is always positive, even if the vector’s components are negative.</p>
|
||
<h2 id="normalizing-vectors">Normalizing Vectors</h2>
|
||
<div class="half-width-right">
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_14.png" alt="Figure 1.13: When a vector is normalized, it points in the same direction but has been resized to a unit length of 1.">
|
||
<figcaption>Figure 1.13: When a vector is normalized, it points in the same direction but has been resized to a unit length of 1.</figcaption>
|
||
</figure>
|
||
</div>
|
||
<p>Calculating the magnitude of a vector is only the beginning. It opens the door to many possibilities, the first of which is <strong>normalization</strong> (Figure 1.13). This is the process of making something standard or, well . . . normal. In the case of vectors, the convention is that a standard vector has a length of 1. To normalize a vector, therefore, is to take a vector of any length and change its length to 1, without changing its direction. That normalized vector is then called a <strong>unit vector</strong>.</p>
|
||
<p>A unit vector describes a vector’s direction without regard to its length. You’ll see this come in especially handy once you start to work with forces in Chapter 2.</p>
|
||
<p>For any given vector <span data-type="equation">\vec{u}</span>, its unit vector (written as <span data-type="equation">\hat{u}</span>) is calculated as follows:</p>
|
||
<div data-type="equation">\hat{u} = \frac{\vec{u}}{||\vec{u}||}</div>
|
||
<div class="half-width-right">
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_15.png" alt="Figure 1.14: To normalize a vector, its components are divided by its magnitude.">
|
||
<figcaption>Figure 1.14: To normalize a vector, its components are divided by its magnitude.</figcaption>
|
||
</figure>
|
||
</div>
|
||
<p>In other words, to normalize a vector, divide each component by the vector’s magnitude. To see why this works, consider a vector (4, 3), which has a magnitude of 5 (see Figure 1.14). Once normalized, the vector will have a magnitude of 1. Thinking of the vector as a right triangle, normalization shrinks the hypotenuse by dividing by 5 (since 5/5 = 1). In that process, each side shrinks as well, also by a factor of 5. The side lengths go from 4 and 3 to 4/5 and 3/5, respectively.</p>
|
||
<p>In the <code>p5.Vector</code> class, the normalization method is written as follows:</p>
|
||
<pre class="codesplit" data-code-language="javascript">normalize() {
|
||
let m = this.mag();
|
||
this.div(m);
|
||
}</pre>
|
||
<p>Of course, there’s one small issue. What if the magnitude of the vector is 0? You can’t divide by 0! Some quick error checking fixes that right up:</p>
|
||
<pre class="codesplit" data-code-language="javascript">normalize() {
|
||
let m = this.mag();
|
||
if (m > 0) {
|
||
this.div(m);
|
||
}
|
||
}</pre>
|
||
<p>This sketch uses normalization to give the vector between the mouse and the center of the canvas a fixed length, regardless of the actual magnitude of the original vector.</p>
|
||
<div data-type="example">
|
||
<h3 id="example-16-normalizing-a-vector">Example 1.6: Normalizing a Vector</h3>
|
||
<figure>
|
||
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/5dWkegAID" data-example-path="examples/01_vectors/example_1_6_vector_normalize"><img src="examples/01_vectors/example_1_6_vector_normalize/screenshot.png"></div>
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
</div>
|
||
<pre class="codesplit" data-code-language="javascript">function draw() {
|
||
background(255);
|
||
|
||
let mouse = createVector(mouseX, mouseY);
|
||
let center = createVector(width / 2, height / 2);
|
||
mouse.sub(center);
|
||
|
||
translate(width / 2, height / 2);
|
||
stroke(200);
|
||
strokeWeight(2);
|
||
line(0, 0, mouse.x, mouse.y);
|
||
|
||
// In this example, after the vector is normalized, it’s multiplied by 50. Note that no matter where the mouse is, the vector always has the same length (50) because of the normalization process.
|
||
mouse.normalize();
|
||
mouse.mult(50);
|
||
|
||
stroke(0);
|
||
strokeWeight(8);
|
||
line(0, 0, mouse.x, mouse.y);
|
||
}</pre>
|
||
<p>Notice that I’ve multiplied the <code>mouse</code> vector by 50 after normalizing it to 1. Normalization is often the first step in creating a vector of a specific length, even if the desired length is something other than 1. You’ll see more of this later in the chapter.</p>
|
||
<p>All this vector math stuff sounds like something you should know about, but why? How will it help you write code? Patience. It’ll take some time before the awesomeness of using <code>p5.Vector</code> fully comes to light. This is a fairly common occurrence when learning a new data structure. For example, when you first learn about arrays, it might seem like more work to use an array than to have several variables stand for multiple things. That plan quickly breaks down when you need 100, 1,000, or 10,000 things, however.</p>
|
||
<p>The same can be true for vectors. What might seem like more work now will pay off later, and quite nicely. And you don’t have to wait too long, as your reward will come in the next chapter. For now, however, I’ll focus on <em>how</em> vectors work, and on how working with them provides a different way to think about motion.</p>
|
||
<h2 id="motion-with-vectors">Motion with Vectors</h2>
|
||
<p>What does it mean to program motion by using vectors? You got a taste of it in Example 1.2, the bouncing ball. The circle onscreen has a position (its location at any given moment) as well as a velocity (instructions for how it should move from one moment to the next). Velocity is added to position:</p>
|
||
<pre class="codesplit" data-code-language="javascript">position.add(velocity);</pre>
|
||
<p>Then the object is drawn at the new position:</p>
|
||
<pre class="codesplit" data-code-language="javascript">circle(position.x, position.y, 48);</pre>
|
||
<p>Together, these steps are Motion 101:</p>
|
||
<ol>
|
||
<li>Add the velocity to the position.</li>
|
||
<li>Draw the object at the position.</li>
|
||
</ol>
|
||
<p>In the bouncing ball example, all this code happened within <code>setup()</code> and <code>draw()</code>. What I want to do now is move toward encapsulating all the logic for an object’s motion inside a <strong>class</strong>. This way, I can create a foundation for programming moving objects that I can easily reuse again and again. (See “<a href="/random#the-random-walker-class">The Random Walker Class”</a> for a brief review of OOP basics.)</p>
|
||
<p>To start, I’m going to create a generic <code>Mover</code> class that will describe a shape moving around the canvas. For that, I must consider the following two questions:</p>
|
||
<ol>
|
||
<li>What data does a mover have?</li>
|
||
<li>What functionality does a mover have?</li>
|
||
</ol>
|
||
<p>The Motion 101 algorithm answers both of these questions. First, a <code>Mover</code> object has two pieces of data, <code>position</code> and <code>velocity</code>, which are both <code>p5.Vector</code> objects. These are initialized in the object’s constructor. In this case, I’ll arbitrarily decide to initialize the <code>Mover</code> object by giving it a random position and velocity. Note the use of <code>this</code> with all variables that are part of the <code>Mover</code> object:</p>
|
||
<div class="snip-below">
|
||
<pre class="codesplit" data-code-language="javascript">class Mover {
|
||
constructor() {
|
||
this.position = createVector(random(width), random(height));
|
||
this.velocity = createVector(random(-2,2), random(-2, 2));
|
||
}</pre>
|
||
</div>
|
||
<p>The functionality follows suit. The <code>Mover</code> object needs to move (by applying its velocity to its position) and needs to be visible. I’ll implement these needs as functions named <code>update()</code> and <code>show()</code>. I’ll put all the motion logic code in <code>update()</code> and draw the object in <code>show()</code>:</p>
|
||
<div class="snip-above snip-below">
|
||
<pre class="codesplit" data-code-language="javascript"> update() {
|
||
// The mover moves.
|
||
this.position.add(this.velocity);
|
||
}
|
||
|
||
show() {
|
||
stroke(0);
|
||
fill(175);
|
||
// The mover is drawn as a circle.
|
||
circle(this.position.x, this.position.y, 48);
|
||
}</pre>
|
||
</div>
|
||
<p>The <code>Mover</code> class also needs a function that determines what the object should do when it reaches the edge of the canvas. For now, I’ll do something simple and have it wrap around the edges:</p>
|
||
<div class="snip-above">
|
||
<pre class="codesplit" data-code-language="javascript"> checkEdges() {
|
||
//{!11} When it reaches one edge, set the position to the other edge.
|
||
if (this.position.x > width) {
|
||
this.position.x = 0;
|
||
} else if (this.position.x < 0) {
|
||
this.position.x = width;
|
||
}
|
||
|
||
if (this.position.y > height) {
|
||
this.position.y = 0;
|
||
} else if (this.position.y < 0) {
|
||
this.position.y = height;
|
||
}
|
||
}
|
||
}</pre>
|
||
</div>
|
||
<p>Now the <code>Mover</code> class is finished, but the class itself isn’t an object; it’s a template for creating an instance of an object. To actually create a <code>Mover</code> object, I first need to declare a variable to hold it:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let mover;</pre>
|
||
<p>Then, inside the <code>setup()</code> function, I create the object by invoking the class name along with the <code>new</code> keyword. This triggers the class’s constructor to make an instance of the object:</p>
|
||
<pre class="codesplit" data-code-language="javascript">mover = new Mover();</pre>
|
||
<p>Now all that remains is to call the appropriate methods in <code>draw()</code>:</p>
|
||
<pre class="codesplit" data-code-language="javascript">mover.update();
|
||
mover.checkEdges();
|
||
mover.show();</pre>
|
||
<p>Here’s the entire example for reference.</p>
|
||
<div data-type="example">
|
||
<h3 id="example-17-motion-101-velocity">Example 1.7: Motion 101 (Velocity)</h3>
|
||
<figure>
|
||
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/6foX0NUfS" data-example-path="examples/01_vectors/example_1_7_motion_101_velocity"><img src="examples/01_vectors/example_1_7_motion_101_velocity/screenshot.png"></div>
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
</div>
|
||
<pre class="codesplit" data-code-language="javascript">// Declare the <code>Mover</code> object.
|
||
let mover;
|
||
|
||
function setup() {
|
||
createCanvas(640, 240);
|
||
// Create the <code>Mover</code> object.
|
||
mover = new Mover();
|
||
}
|
||
|
||
function draw() {
|
||
background(255);
|
||
|
||
// Call methods on the <code>Mover</code> object.
|
||
mover.update();
|
||
mover.checkEdges();
|
||
mover.show();
|
||
}
|
||
|
||
class Mover {
|
||
constructor() {
|
||
// The object has two vectors: position and velocity.
|
||
this.position = createVector(random(width), random(height));
|
||
this.velocity = createVector(random(-2, 2), random(-2, 2));
|
||
}
|
||
|
||
update() {
|
||
// Motion 101: position changes by velocity.
|
||
this.position.add(this.velocity);
|
||
}
|
||
|
||
show() {
|
||
stroke(0);
|
||
strokeWeight(2);
|
||
fill(127);
|
||
circle(this.position.x, this.position.y, 48);
|
||
}
|
||
|
||
checkEdges() {
|
||
if (this.position.x > width) {
|
||
this.position.x = 0;
|
||
} else if (this.position.x < 0) {
|
||
this.position.x = width;
|
||
}
|
||
|
||
if (this.position.y > height) {
|
||
this.position.y = 0;
|
||
} else if (this.position.y < 0) {
|
||
this.position.y = height;
|
||
}
|
||
}
|
||
}</pre>
|
||
<p>If OOP is at all new to you, one aspect here may seem a bit strange. I spent the beginning of this chapter discussing the <code>p5.Vector</code> class, and this class is the template for making the <code>position</code> object and the <code>velocity</code> object. So what are those objects doing inside yet another object, the <code>Mover</code> object?</p>
|
||
<p>In fact, this is just about the most normal thing ever. An object is something that holds data (and functionality). That data can be numbers, or it can be other objects (arrays too)! You’ll see this over and over again in this book. In Chapter 4, for example, I’ll write a class to describe a system of particles. That <code>ParticleSystem</code> object will include a list of <code>Particle</code> objects . . . and each <code>Particle</code> object will have as its data several <code>p5.Vector</code> objects!</p>
|
||
<p>You may have also noticed in the <code>Mover</code> class that I’m setting the initial position and velocity directly within the constructor, without using any arguments. While this approach keeps the code simple for now, I’ll explore the benefits of adding arguments to the constructor in <a href="/forces#">Chapter 2</a>.</p>
|
||
<p>At this point, you hopefully feel comfortable with two concepts: (1) what a vector is and (2) how to use vectors inside an object to keep track of its position and movement. This is an excellent first step and deserves a mild round of applause. Before standing ovations are in order, however, you need to make one more, somewhat bigger step forward. After all, watching the Motion 101 example is fairly boring. The circle never speeds up, never slows down, and never turns. For more sophisticated motion—the kind of motion that appears in the world around us—one more vector needs to be added to the class: <code>acceleration</code>.</p>
|
||
<h2 id="acceleration">Acceleration</h2>
|
||
<p><strong>Acceleration</strong> is the<em> </em>rate of change of velocity. Think about that definition for a moment. Is it a new concept? Not really. Earlier I defined velocity as<em> </em>the rate of change of position, so in essence I’m developing a trickle-down effect. Acceleration affects velocity, which in turn affects position. (To provide some brief foreshadowing, this point will become even more crucial in the next chapter, when I show how forces like friction affect acceleration, which affects velocity, which affects position.) In code, this trickle-down effect reads like this:</p>
|
||
<pre class="codesplit" data-code-language="javascript">velocity.add(acceleration);
|
||
position.add(velocity);</pre>
|
||
<p>As an exercise, from this point forward, I’m going to make a rule for myself: I’ll try to write every example in the rest of this book without ever touching the values of velocity and position (except to initialize them). In other words, the goal for programming motion is to come up with an algorithm for calculating acceleration and then let the trickle-down effect work its magic. (In truth, there will be a multitude of reasons to break this rule, and break it I shall. Nevertheless, it’s a useful constraint to begin with to illustrate the principles behind the motion algorithm with acceleration.)</p>
|
||
<p>The next step, then, is to come up with a way to calculate acceleration. Here are a few possible algorithms:</p>
|
||
<ul>
|
||
<li>A constant acceleration</li>
|
||
<li>A random acceleration</li>
|
||
<li>An acceleration toward the mouse</li>
|
||
</ul>
|
||
<p>I’ll use the rest of this chapter to show you how to implement these algorithms.</p>
|
||
<h3 id="algorithm-1-constant-acceleration">Algorithm 1: Constant Acceleration</h3>
|
||
<p>Acceleration Algorithm 1, a constant acceleration, isn’t particularly interesting, but it’s the simplest and thus an excellent starting point to incorporate acceleration into the code. The first step is to add another variable to the <code>Mover</code> class:</p>
|
||
<div class="snip-below">
|
||
<pre class="codesplit" data-code-language="javascript">class Mover {
|
||
constructor() {
|
||
// Initialize a stationary mover at the center of the canvas.
|
||
this.position = createVector(width / 2, height / 2);
|
||
this.velocity = createVector(0, 0);
|
||
// A new vector for acceleration
|
||
<strong>this.acceleration = createVector(0, 0);</strong>
|
||
}</pre>
|
||
</div>
|
||
<p></p>
|
||
<p>Next, incorporate acceleration into the <code>update()</code> function:</p>
|
||
<div class="snip-below snip-above">
|
||
<pre class="codesplit" data-code-language="javascript"> update() {
|
||
// The motion algorithm is now two lines of code!
|
||
<strong>this.velocity.add(this.acceleration);
|
||
this.position.add(this.velocity);</strong>
|
||
}</pre>
|
||
</div>
|
||
<p>I’m almost finished. The only missing piece is to get that mover moving! In the constructor, the initial velocity is set to 0, rather than a random vector as previously done. Therefore, when the sketch starts, the object is at rest. To get it moving instead of changing the velocity directly, I’ll update it through the object’s acceleration. According to Algorithm 1, the acceleration should be constant, so I’ll choose a value now:</p>
|
||
<pre class="codesplit" data-code-language="javascript"> this.acceleration = createVector(-0.001, 0.01);</pre>
|
||
<p>This means that for every frame of the animation, the object’s velocity should increase by –0.001 pixels in the x-direction and 0.01 pixels in the y-direction. Maybe you’re thinking, “Gosh, those values seem awfully small!” Indeed, they are quite tiny, but that’s by design. Acceleration values accumulate over time in the velocity, about 30 times per second, depending on the sketch’s frame rate. To keep the magnitude of the velocity vector from growing too quickly and spiraling out of control, the acceleration values should remain quite small.</p>
|
||
<p>I can also help keep the velocity within a reasonable range by incorporating the <code>p5.Vector</code> function <code>limit()</code>, which puts a cap on the magnitude of a vector:</p>
|
||
<pre class="codesplit" data-code-language="javascript"> // The <code>limit()</code> function constrains the magnitude of a vector.
|
||
this.velocity.limit(10);</pre>
|
||
<p>This translates to the following:</p>
|
||
<blockquote data-type="epigraph">
|
||
<p><em>What is the magnitude of </em><em>velocity</em><em>? If it’s less than 10, no worries; just leave it as is. If it’s more than 10, however, reduce it to 10!</em></p>
|
||
</blockquote>
|
||
<div data-type="exercise">
|
||
<h3 id="exercise-14">Exercise 1.4</h3>
|
||
<p>Write the <code>limit()</code> function for the <code>p5.Vector</code> class:</p>
|
||
<pre class="codesplit" data-code-language="javascript"> limit(max) {
|
||
if (<span class="blank">this.mag() > </span><span class="blank">max</span>) {
|
||
<span class="blank">this.normalize()</span>;
|
||
<span class="blank">this.mult(max)</span>;
|
||
}
|
||
}</pre>
|
||
</div>
|
||
<p>Let’s take a look at the changes to the <code>Mover</code> class, complete with <code>acceleration</code> and <code>limit()</code>.</p>
|
||
<div data-type="example">
|
||
<h3 id="example-18-motion-101-velocity-and-constant-acceleration">Example 1.8: Motion 101 (Velocity and Constant Acceleration)</h3>
|
||
<figure>
|
||
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/4GSialOpQw" data-example-path="examples/01_vectors/example_1_8_motion_101_velocity_and_constant_acceleration"><img src="examples/01_vectors/example_1_8_motion_101_velocity_and_constant_acceleration/screenshot.png"></div>
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
</div>
|
||
<pre class="codesplit" data-code-language="javascript">class Mover {
|
||
constructor() {
|
||
this.position = createVector(width / 2, height / 2);
|
||
this.velocity = createVector(0, 0);
|
||
// Acceleration is the key!
|
||
this.acceleration = createVector(-0.001, 0.01);
|
||
// The variable <code>topSpeed</code> will limit the magnitude of velocity.
|
||
this.topSpeed = 10;
|
||
}
|
||
|
||
update() {
|
||
//{!2} Velocity changes by acceleration and is limited by <code>topSpeed</code>.
|
||
this.velocity.add(this.acceleration);
|
||
this.velocity.limit(this.topSpeed);
|
||
this.position.add(this.velocity);
|
||
}
|
||
|
||
// <code>show()</code> is the same.
|
||
show() {}
|
||
|
||
// <code>checkEdges()</code> is the same.
|
||
checkEdges() {}
|
||
}</pre>
|
||
<p>The net result is that the object falls down and to the left, gradually moving faster and faster until it reaches the maximum velocity.</p>
|
||
<div data-type="exercise">
|
||
<h3 id="exercise-15">Exercise 1.5</h3>
|
||
<p>Create a simulation of an object (think about a vehicle) that accelerates when you press the up arrow and brakes when you press the down arrow.</p>
|
||
</div>
|
||
<h3 id="algorithm-2-random-acceleration">Algorithm 2: Random Acceleration</h3>
|
||
<p>Now on to Acceleration Algorithm 2, a random acceleration. In this case, instead of initializing <code>acceleration</code> in the object’s constructor, I want to randomly set its value inside the <code>update()</code> method. This way, the object will get a different acceleration vector for every frame of the animation:</p>
|
||
<pre class="codesplit" data-code-language="javascript">update() {
|
||
// The <code>random2D()</code> method returns a unit vector pointing in a random direction.
|
||
this.acceleration = p5.Vector.random2D();
|
||
this.velocity.add(this.acceleration);
|
||
this.velocity.limit(this.topSpeed);
|
||
this.position.add(this.velocity);
|
||
}</pre>
|
||
<p>The <code>random2D()</code> method produces a normalized vector, meaning it has a random direction, but its magnitude is always 1. To make things interesting, I can try scaling the random vector by a constant value:</p>
|
||
<pre class="codesplit" data-code-language="javascript"> this.acceleration = p5.Vector.random2D();
|
||
// Constant
|
||
<strong>this.acceleration.mult(0.5);</strong></pre>
|
||
<p>Or, for even greater variety, I can scale the acceleration to a random value. In Example 1.9, the <code>acceleration</code> vector has both a random direction and a random magnitude from 0 to 2.</p>
|
||
<div data-type="example">
|
||
<h3 id="example-19-motion-101-velocity-and-random-acceleration">Example 1.9: Motion 101 (Velocity and Random Acceleration)</h3>
|
||
<figure>
|
||
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/w9DU8ccWMf" data-example-path="examples/01_vectors/example_1_9_motion_101_velocity_and_random_acceleration"><img src="examples/01_vectors/example_1_9_motion_101_velocity_and_random_acceleration/screenshot.png"></div>
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
</div>
|
||
<pre class="codesplit" data-code-language="javascript"> this.acceleration = p5.Vector.random2D();
|
||
// Random
|
||
<strong>this.acceleration.mult(random(2));</strong></pre>
|
||
<p>It’s crucial to understand that acceleration doesn’t merely refer to <em>speeding up</em> or <em>slowing down.</em> Rather, as this example has shown, it refers to <em>any change</em> in velocity—magnitude or direction. Acceleration is used to steer an object, and you’ll see this again and again in future chapters as I begin to code objects that make decisions about how to move.</p>
|
||
<p>You might also notice that this example is another kind of random walker.<strong><em> </em></strong>A key distinction between what I’m doing here and the previous chapter’s examples, however, lies in <em>what</em> is being randomized. With the traditional random walker, I was directly manipulating the velocity, meaning each step was completely independent of the last. In Example 1.9, the acceleration (the rate of change of velocity) is being randomized, not the velocity itself. This makes the object’s motion dependent on its previous state: the velocity changes incrementally according to the random acceleration. The resulting movement of the object has a kind of continuity and fluidity that the original random walker lacked. The difference may seem subtle, but it fundamentally changes the way the object moves about the canvas.</p>
|
||
<div data-type="exercise">
|
||
<h3 id="exercise-16">Exercise 1.6</h3>
|
||
<p>Referring back to Exercise 0.6, implement an acceleration calculated with Perlin noise.</p>
|
||
</div>
|
||
<h3 id="static-vs-nonstatic-methods">Static vs. Nonstatic Methods</h3>
|
||
<p>You might have noticed something a bit odd and unfamiliar in the previous example. The <code>random2D()</code> method used to create a random unit vector was called on the class name, as in <code>p5.Vector.random2D()</code>, rather than on the current instance of the class, as in <code>this.random2D()</code>. This is because <code>random2D()</code> is a <strong>static method</strong>, meaning it’s associated with the class as a whole rather than the individual objects (that is, the instances of that class).</p>
|
||
<p>Static methods are rarely needed when you’re writing your own classes (like <code>Walker</code> or <code>Mover</code>), so you may not have encountered them before. They sometimes form an important part of prewritten classes like <code>p5.Vector</code>, however. In fact, Acceleration Algorithm 3 (accelerate toward the mouse) requires further use of this concept, so let’s take a step back and consider the difference between static and nonstatic methods.</p>
|
||
<p>Setting aside vectors for a second, take a look at the following code:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let x = 0;
|
||
let y = 5;
|
||
|
||
x = x + y;</pre>
|
||
<p>This is probably what you’re used to, yes? I give <code>x</code> a value of 0, add <code>y</code> to it, and now <code>x</code> is equal to 5. I could write similar code for adding two vectors:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let v = createVector(0, 0);
|
||
let u = createVector(4, 5);
|
||
|
||
v.add(u);</pre>
|
||
<p>The vector <code>v</code> has the value of (0, 0), I add the vector <code>u</code> to it, and now <code>v</code> is equal to (4, 5). Makes sense, right?</p>
|
||
<p>Now consider this example:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let x = 0;
|
||
let y = 5;
|
||
|
||
let z = x + y;</pre>
|
||
<p>I give <code>x</code> a value of 0, add <code>y</code> to it, and store the result in a new variable <code>z</code>. The value of <code>x</code> doesn’t change here (neither does <code>y</code>)! This may seem like a trivial point, and one that’s quite intuitive when it comes to mathematical operations with simple numbers. However, it’s not so obvious with mathematical operations using <code>p5.Vector</code> objects. Let’s try to rewrite the example with vectors, based on what I’ve covered of the <code>p5.Vector</code> class so far:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let v = createVector(0, 0);
|
||
let u = createVector(4, 5);
|
||
|
||
// Don’t be fooled; this is incorrect!
|
||
let w = v.add(u);</pre>
|
||
<p>This might seem like a good guess, but it’s just not the way the <code>p5.Vector</code> class works. If you look at the definition of <code>add()</code>, you can see why:</p>
|
||
<pre class="codesplit" data-code-language="javascript">add(v) {
|
||
this.x = this.x + v.x;
|
||
this.y = this.y + v.y;
|
||
}</pre>
|
||
<p>This code has two problems. First, the <code>add()</code> method doesn’t return a new <code>p5.Vector</code> object, and second, <code>add()</code> changes the value of the vector upon which it’s called. To add two vector objects together and return the result as a new vector, I must use the static version of the <code>add()</code> method by calling it on the class name, rather than calling the nonstatic version on a specific object instance.</p>
|
||
<p>Here’s how I might write the static version of <code>add()</code> if I were declaring the class myself:</p>
|
||
<pre class="codesplit" data-code-language="javascript">// The static version adds two vectors together and assigns the result to a new vector while leaving the original vectors (<code>v</code> and <code>u</code> in the preceding code blocks) intact.
|
||
static add(v1, v2) {
|
||
let v3 = createVector(v1.x + v2.x, v1.y + v2.y);
|
||
return v3;
|
||
}</pre>
|
||
<p>The key difference here is that the method returns a new vector (<code>v3</code>) created using the sum of the components of <code>v1</code> and <code>v2</code>. As a result, the method doesn’t make changes to either original vector.</p>
|
||
<p>When calling a static method, instead of referencing an object instance, you reference the name of the class. Here’s the right way to implement the vector addition example:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let v = createVector(0, 0);
|
||
let u = createVector(4, 5);
|
||
|
||
<s>let w = v.add(u);</s>
|
||
<strong>let w = p5.Vector.add(v, u);</strong></pre>
|
||
<p>The <code>p5.Vector</code> class has static versions of <code>add()</code>, <code>sub()</code>, <code>mult()</code>, and <code>div()</code>. These static methods allow you to perform generic mathematical operations on vectors without changing the value of one of the input vectors in the process.</p>
|
||
<div data-type="exercise">
|
||
<h3 id="exercise-17">Exercise 1.7</h3>
|
||
<p>Translate the following pseudocode to code, using static or nonstatic functions where appropriate:</p>
|
||
<ul>
|
||
<li>The vector <code>v</code> equals (1, 5).</li>
|
||
<li>The vector <code>u</code> equals <code>v</code> multiplied by 2.</li>
|
||
<li>The vector <code>w</code> equals <code>v</code> minus <code>u</code>.</li>
|
||
<li>Divide the vector <code>w</code> by 3.</li>
|
||
</ul>
|
||
<pre class="codesplit" data-code-language="javascript">let v = <span class="blank">createVector(1, 5)</span>;
|
||
let u = <span class="blank">p5.Vector.mult</span>(<span class="blank">v, 2</span>);
|
||
let w = <span class="blank">p5.Vector.sub</span>(<span class="blank">v, u</span>);
|
||
<span class="blank">w.div(3)</span>;</pre>
|
||
</div>
|
||
<h3 id="algorithm-3-interactive-motion">Algorithm 3: Interactive Motion</h3>
|
||
<p>To finish out this chapter, let’s try something a bit more complex and a great deal more useful. I’ll dynamically calculate an object’s acceleration according to the rule stated in Acceleration Algorithm 3: the object accelerates toward the mouse.</p>
|
||
<div class="half-width-right">
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_16.png" alt="Figure 1.15: A vector from an object to the mouse position">
|
||
<figcaption>Figure 1.15: A vector from an object to the mouse position</figcaption>
|
||
</figure>
|
||
</div>
|
||
<p>Anytime you want to calculate a vector based on a rule or formula, you need to compute two attributes: magnitude and direction. I’ll start with direction. I know the acceleration vector should point from the object’s position toward the mouse position (Figure 1.15). Let’s say the object is located at the position vector (<em>x</em>, <em>y</em>), and the mouse is at (<em>mouseX</em>, <em>mouseY</em>).</p>
|
||
<div class="half-width-right">
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_17.png" alt="Figure 1.16: Calculating an initial acceleration vector by taking the difference of the mouse and position vectors">
|
||
<figcaption>Figure 1.16: Calculating an initial acceleration vector by taking the difference of the mouse and position vectors</figcaption>
|
||
</figure>
|
||
</div>
|
||
<p>In Figure 1.16, you see that the acceleration vector (<em>dx</em>, <em>dy</em>) can be calculated by subtracting the object’s position from the mouse’s position:</p>
|
||
<ul>
|
||
<li><span data-type="equation">dx = mouseX - x</span></li>
|
||
<li><span data-type="equation">dy = mouseY - y</span></li>
|
||
</ul>
|
||
<p>Let’s implement that by using <code>p5.Vector</code> syntax. Assuming the code will live inside the <code>Mover</code> class and thus have access to the object’s <code>position</code>, I can write this:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let mouse = createVector(mouseX, mouseY);
|
||
// Look! I’m using the static reference to <code>sub()</code> because I want a new <code>p5.Vector</code>!
|
||
let direction = p5.Vector.sub(mouse, this.position);</pre>
|
||
<p>I’ve used the static version of <code>sub()</code> to create a new vector <code>direction</code> that points from the mover’s position to the mouse. If the object were to actually accelerate using that vector, however, it would appear instantaneously at the mouse position, since the magnitude of <code>direction</code> is equal to the distance between the object and the mouse. This wouldn’t make for a smooth animation, of course. The next step, therefore, is to decide how quickly the object should accelerate toward the mouse by changing the vector’s magnitude.</p>
|
||
<p>To set the magnitude (whatever it may be) of the acceleration vector, I must first ______ the vector. That’s right, you said it: <em>normalize</em>! If I can shrink the vector to its unit vector (of length 1), I can easily scale it to any other value, because 1 multiplied by anything equals anything:</p>
|
||
<pre class="codesplit" data-code-language="javascript">//{!1} Any number!
|
||
let anything = __________________;
|
||
direction.normalize();
|
||
direction.mult(anything);</pre>
|
||
<p>To summarize, follow these steps to make the object accelerate toward the mouse:</p>
|
||
<ol>
|
||
<li>Calculate a vector that points from the object to the target position (mouse).</li>
|
||
<li>Normalize that vector (reducing its length to 1).</li>
|
||
<li>Scale that vector to an appropriate value (by multiplying it by a value).</li>
|
||
<li>Assign that vector to acceleration.</li>
|
||
</ol>
|
||
<p>I have a confession to make. Normalization and then scaling is such a common vector operation that <code>p5.Vector</code> includes a function that does both, setting the magnitude of a vector to a given value with a single function call. That function is <code>setMag()</code>:</p>
|
||
<pre class="codesplit" data-code-language="javascript">let anything = ?????
|
||
dir.setMag(anything);</pre>
|
||
<p>In this next example, to emphasize the math, I’m going to write the code using <code>normalize()</code> and <code>mult()</code>, but this is likely the last time I’ll do that. You’ll find <code>setMag()</code> in examples going forward.</p>
|
||
<div data-type="example">
|
||
<h3 id="example-110-accelerating-toward-the-mouse">Example 1.10: Accelerating Toward the Mouse</h3>
|
||
<figure>
|
||
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/gYJHm1EFL" data-example-path="examples/01_vectors/example_1_10_accelerating_towards_the_mouse"><img src="examples/01_vectors/example_1_10_accelerating_towards_the_mouse/screenshot.png"></div>
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
</div>
|
||
<pre class="codesplit" data-code-language="javascript"> update() {
|
||
let mouse = createVector(mouseX, mouseY);
|
||
// Step 1: Compute the direction.
|
||
let dir = p5.Vector.sub(mouse, this.position);
|
||
|
||
// Step 2: Normalize.
|
||
dir.normalize();
|
||
|
||
// Step 3: Scale.
|
||
dir.mult(0.2);
|
||
|
||
// Step 4: Accelerate.
|
||
this.acceleration = dir;
|
||
|
||
this.velocity.add(this.acceleration);
|
||
this.velocity.limit(this.topSpeed);
|
||
this.position.add(this.velocity);
|
||
}</pre>
|
||
<p>You may be wondering why the circle doesn’t stop when it reaches the target. It’s important to note that the moving object has no knowledge about trying to stop at a destination; it knows only the destination’s position. The object tries to accelerate there at a fixed rate, regardless of how far away it is. This means it will inevitably overshoot the target and have to turn around, again accelerating toward the destination, overshooting it again, and so forth. Stay tuned; in later chapters, I’ll show you how to program an object to <strong>arrive</strong> at a target (slow down on approach).</p>
|
||
<div data-type="exercise">
|
||
<h3 id="exercise-18">Exercise 1.8</h3>
|
||
<p>Example 1.10 is remarkably close to the concept of gravitational attraction, with the object being attracted to the mouse position. In the example, however, the attraction magnitude is constant, whereas with a real-life gravitational force, the magnitude is inversely proportional to distance: the closer the object is to the attraction point, the faster it accelerates. I’ll cover gravitational attraction in more detail in the next chapter, but for now, try implementing your own version of Example 1.10 with a variable magnitude of acceleration, stronger when it’s either closer or farther away.</p>
|
||
</div>
|
||
<div data-type="project">
|
||
<h3 id="the-ecosystem-project-2">The Ecosystem Project</h3>
|
||
<p>Incorporate vectors to further develop and refine the motion of the elements within your ecosystem. Explore how motion can be directed by solely manipulating an object’s acceleration vector.</p>
|
||
<p>How might you calculate acceleration to emulate certain behaviors—the erratic buzzing of a nervous fly, the gentle hops of a bunny, or the slithering of a snake? What role does acceleration play in nature? Consider the way a bird accelerates when taking off or how a fish suddenly changes direction when swimming. Again, how much of a creature’s personality can be shaped by its behavior alone? What is added (or taken away) by incorporating more visual design elements beyond simple shapes?</p>
|
||
<figure>
|
||
<img src="images/01_vectors/01_vectors_18.png" alt="">
|
||
<figcaption></figcaption>
|
||
</figure>
|
||
</div>
|
||
</section> |