@@ -167,7 +167,7 @@ the image, this corresponds to the grey areas that give us direct access to the
167
167
final color of the pixel (more precisely, the percentage of the color we have
168
168
to mix with the background color or any other object in the vicinity).
169
169
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
171
171
computation of the final shape too complex. In two dimensions however, this is
172
172
probably the best method we can use and this is also the method that is used in
173
173
the `Anti-grain geometry
@@ -278,11 +278,11 @@ border (with some tolerance or we won't see anything).
278
278
const float epsilon = 0.005;
279
279
float d = distance(v_position, vec2(0.0), 0.5);
280
280
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);
282
282
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);
284
284
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);
286
286
}
287
287
288
288
@@ -674,8 +674,8 @@ We have our signed distance functions but we need to exploit them in order to
674
674
do the proper antialiasing. If you remember that a SDF function gives the
675
675
distance to the border of the shape, we still need to compute the right color
676
676
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
679
679
of the border, it is not fully black nor fully white but grey. What amount of
680
680
grey you might ask? Well, it is directly correlated with the distance to the
681
681
border. But first, let's have a look at the figure below that show the
0 commit comments