RSSAmplifier

Blog

Fatih Erikli's notes on computer graphics

My notes on computer graphics

a https://fatih-erikli-potato.github.ioRSS feed ↗5 posts

Latest posts

Slicing bezier surfaces

It is possible to split a bezier surface into two pieces. It helps to slice a surface into several pieces by keeping the whole shape in its original form. In that way we are able to shape one piece of several slices of a whole surface.

Rendering a bezier surface

Previously I wrote a blog post about how to interpolate a bezier curve. A bezier curve helps us to create smooth lines, surfaces, type faces. A bezier surface is set of bezier curves that is used for imaging a part of something. Before rendering a bezier surface, I will mention about how to render something with Python programming language. I will demonstrate it by rendering a set of cubes, then I…

Syntax highlighting in Python

I created a syntax highlighter to make my codes looking colorful in my blog. It is written in Python, so it does not require a Javascript code when the page is loaded. It is useful when you create html pages for documentation or a blog. Instead of making it packaged, I share the code piece, so it will be easer to modify when you find something missing.

Comma separated values

I think it isn't a format. It is what it is. Domains are dot separated, URLs are slash seperated values so the something like a, b, c is comma separated values. Value is a thing that people are not being certain about. They are amperstand separated values that contains equals separated values something like that.

Interpolating a bezier curve

It is difficult to implement an interpolation of a bezier curve without seeing how it actually works. It requires too much attention to understand what is really happenning there. It is also difficult to find a clean implementation if you google that. You will most likely find an obfuscated version of a written clean code. So I am sharing a whole food with you.