Blog

74 posts

Getting started with Docker

Virtualisation and Containerisation are an important part of today’s computing landscape. Containers offer several benefits compared to software running directly on an operating system: They are isolated environments, helping with issues like security and dependencies. Running […]

Loading OBJ files in Godot

OBJ is a popular format for 3D meshes and one of the formats in which the 3D BAG is distributed. Because of this I wanted to be able to load OBJ files at runtime, just as […]

Visualizing point clouds in Godot

I’ve previously visualized lines, using clickable meshes as geometry. The advantage of this approach is that you get clickable objects and can access their attributes. The downside is speed, as each vertex and line segment is […]