Skip to content

Commit 234c015

Browse files
committed
corrected typos
1 parent 722d6d9 commit 234c015

5 files changed

+16
-17
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
2-
.vscode/settings.json
1+
.vscode/settings.json

05-cube.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,9 @@ indices (I did it for you):
304304

305305
.. code:: python
306306
307-
O = [0,1, 1,2, 2,3, 3,0,
307+
O = np.array([0,1, 1,2, 2,3, 3,0,
308308
4,7, 7,6, 6,5, 5,4,
309-
0,5, 1,6, 2,7, 3,4 ]
309+
0,5, 1,6, 2,7, 3,4 ], dtype=np.uint32)
310310
O = O.view(gloo.IndexBuffer)
311311
312312
We then need to draw the cube twice. One time using triangles and the indices

06-anti-grain.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ the image, this corresponds to the grey areas that give us direct access to the
167167
final color of the pixel (more precisely, the percentage of the color we have
168168
to mix with the background color or any other object in the vicinity).
169169
Unfortunately, such method is not possible to enforce in a full 3D scene
170-
because all the transformations and differen occlusuins would make the
170+
because all the transformations and different occlusions would make the
171171
computation of the final shape too complex. In two dimensions however, this is
172172
probably the best method we can use and this is also the method that is used in
173173
the `Anti-grain geometry
@@ -278,11 +278,11 @@ border (with some tolerance or we won't see anything).
278278
const float epsilon = 0.005;
279279
float d = distance(v_position, vec2(0.0), 0.5);
280280
if (d > +epsilon)
281-
gl_FragColor = vec4(abs(d), 0.0, 0.0, 1.0);
281+
gl_FragColor = vec4(1.0-abs(d), 0.0, 0.0, 1.0);
282282
else if (d < -epsilon)
283-
gl_FragColor = vec4(0.0, 0.0, abs(d), 1.0);
283+
gl_FragColor = vec4(0.0, 0.0, 1.0-abs(d), 1.0);
284284
else
285-
gl_FragColor = vec4(0.0, 0.0, 0.0, 1.0);
285+
gl_FragColor = vec4(1.0, 1.0, 1.0, 1.0);
286286
}
287287
288288
@@ -674,8 +674,8 @@ We have our signed distance functions but we need to exploit them in order to
674674
do the proper antialiasing. If you remember that a SDF function gives the
675675
distance to the border of the shape, we still need to compute the right color
676676
according to this distance. When we are fully inside or outside the shape, it
677-
is easy: let's say black for the inside and white for the oustide (or nothing
678-
using the transaprency level). The interesting part is located in the vicinity
677+
is easy: let's say black for the inside and white for the outside (or nothing
678+
using the transparency level). The interesting part is located in the vicinity
679679
of the border, it is not fully black nor fully white but grey. What amount of
680680
grey you might ask? Well, it is directly correlated with the distance to the
681681
border. But first, let's have a look at the figure below that show the

07-points.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ without taking care of the normalized device coordinate (this transformation
107107
has been done in the vertex shader above). We now have one problem to solve. A
108108
GL point is made from a single vertex and the apparent size of the resulting
109109
quad is controlled by the `gl_PointSize` variable resulting in several
110-
fragments. How things are interpolated between vertices knowing there is ony
110+
fragments. How things are interpolated between vertices knowing there is only
111111
one vertex? The answer is that there is no interpolation. If we want to know
112112
the position of a fragment relatively to the center, we have to find it
113113
ourself. Luckily, there is one interesting variable `gl_FragCoord` that gives
@@ -280,13 +280,13 @@ Flat sphere
280280
A lit sphere
281281

282282
If you look closely at a sphere, you'll see that that the projected shape on
283-
screen is actualy as disc as shown on the figure on the right. This is actually
283+
screen is actually a disc as shown on the figure on the right. This is actually
284284
true independently of the viewpoint and we can take advantage of it. A long
285285
time ago (with the fixed pipeline), rendering a sphere meant tesselating the
286286
sphere with a large number of triangles. The larger the number of triangles,
287287
the higher the quality of the sphere and the slower the rendering. However,
288-
with the advent of shaders, things have changeg dramatically and we can use
289-
fake spheres, i.e. discs thar are painted such as to appear as spheres. This is
288+
with the advent of shaders, things have changed dramatically and we can use
289+
fake spheres, i.e. discs that are painted such as to appear as spheres. This is
290290
known as "impostors". If you look again at the image, you might realize that
291291
the appeareance of the sphere is given by the shading that is not uniform and
292292
suggests instead a specific lighting that seems to come from the upper right
@@ -331,7 +331,7 @@ for a sphere is very easy. We can simply use the `p=(x,y)` coordinates inside th
331331
fragment shader and compute the `z` coordinate. How? you might ask
332332
yourself. This is actually correlated to the distance `d` to the center such
333333
that `z = 1-d`. If you want to convice yourself, just look at the figure on
334-
the right that show a side view of half a sphere on the xz plane. The z
334+
the right that shows a side view of half a sphere on the xz plane. The z
335335
coordinate is maximal in the center and null on the border.
336336

337337
We're ready to simulate lighting on our disc using the `Phong model

17-bibliography.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Bibliography
88
:class: toc chapter-17
99

1010

11-
This is a curated list of some computer graphics resources (peoole, articles,
11+
This is a curated list of some computer graphics resources (people, articles,
1212
books & tutorials) addressing different aspects. Some are very specific to
1313
OpenGL while some others offer a broader view on computer graphics and
1414
geometry.
@@ -42,7 +42,7 @@ People
4242
Tutorials
4343
---------
4444

45-
.. |tutorial-1| replace:: Open GL tutorial (C)
45+
.. |tutorial-1| replace:: OpenGL tutorial (C)
4646
.. _tutorial-1: http://www.opengl-tutorial.org
4747

4848
.. |tutorial-2| replace:: Learn OpenGL (C)

0 commit comments

Comments
 (0)