08 Jul 2026
After a couple of weeks of hiatus (sometimes, actual work needs to get done),
we are back to our pointless but fun weekend project: drawing mountains in a
style similar to topographic maps, using shadows to hint at the relief. We
are pretty certain that this must be a solved problem. We aren’t particularly
interested in the result: this is more of an excuse to understand lights, and
do a bit of geometry.
As a recap and a teaser, we left off with a simple illumination model, where
the tiles that represent our terrain were lighter or darker, depending on how
much direct light they received:

This isn’t too bad, but it misses an important element: the shadow cast by the
mountains. After our latest changes, this is how things look - much more
satisfying:

More...
03 Jun 2026
Now that we have are setup to draw SVG on a page with Bolero, we can go
back to our main quest: drawing mountains in a style similar to
topographic maps, using shading to hint at the relief. In this post, I
will go over how I approached computing the effect of light on a terrain.
This post will be heavy on geometry, so let’s start with a teaser, showing the
result first:

More...
20 May 2026
With a return to dungeon master duties, making maps has made a come back in my
weekend activities, and I started revisiting an old side-project of mine,
drawing mountains in a style similar to topographic maps. The aspect I am
mostly interested in is not the contour lines, but rather the usage of shadows
to visualize the relief.
My goal here is as follows: given a grid of altitudes describing a terrain, can
I draw it and suggest the relief by rendering the shadows of mountains?
I am pretty certain that there must exist solutions to this. I am less
interested in the result than in understanding lights and shadows. In other
words, this project is entirely pointless, except as an exploration exercise!
In aprevious series of posts, I used SVG to draw geometric figures and
found it reasonably enjoyable, so that’s what I decided to use.
One aspect of that previous project wasn’t very pleasant, though: the process
of generating documents by manually running a scripts to create a html file,
and opening it it the browser to see the results. So I figured I would try
something different, and use this as an excuse to give
Bolero, the F# WebAssembly library, a spin.
Initial setup
The setup of Bolero was completely straightforward:
- install the template,
- create a project, using the
--minimal option,
- start the server with
dotnet watch run,
- go to the browser, a basic elmish app is running, with hot-reload.
More...
06 May 2026
This post is a continuation of my exploration of the RANSAC algorithm. In
my previous post, I began investigating if I could auto-tune some of the
input parameters. The first attempt was not a success, but gave me an idea,
which will be today’s post.
As a quick recap, RANSAC is a method to estimate a model in the presence of
noisy data (so-called outliers). The method requires 2 input parameters:
t, “A threshold value to determine data points that are fit well by the
model (inlier)”,
d, “The number of close data points (inliers) required to assert that the
model fits well to the data”.
Rather than having to specify myself these 2 arguments, I would like the model
to figure out good values by itself. In my initial attempt I tried to directly
estimate the proportion of inliers in the dataset. This time, I will try a
different angle: what if I started from pessimistic estimates, assuming many
outliers and very high noise, and progressively tightened up the estimates?
More...
08 Apr 2026
In my previous posts, I looked into the RANSAC algorithm. One thing I
wondered about is, could the algorithm usage be made simpler by automatically
tuning some of its input parameters? That is, rather than requiring the user to
enter parameters, can we derive reasonable values for these parameters from the
data? In this post, I will go over my first attempt. This was not a success,
in that it did not produce immediately useful results, but it gave me a better
understanding of the algorithm, and the process was interesting, so that’s what
this post will focus on.
In the algorithm as described in Wikipedia, 2 parameters stand out in
particular:
t, “A threshold value to determine data points that are fit well by the
model (inlier)”,
d, “The number of close data points (inliners) required to assert that the
model fits well to the data”.
My thinking here was that, given a particular model, I should be able to derive
these numbers from the data itself. t, the threshold value, is about how
far predictions are from the correct value, something we can measure. d is
about how many predictions should be close to their actual values overall. It
is related to a different measure, the proportion of outliers. If I had, say,
20% of outliers in my sample, I would expect roughly 80% of my model
predictions to be close to the correct value.
RANSAC assumes that you, the user, will input these values. What I wondered
about is, if all I had was a model and a dataset, how I would go about
evaluating the value of d. Or, stated differently, could I estimate
p(outliers), the proportion of outliers in a dataset?
More...