Project

barretina

0.0
No release in over 3 years
WORK IN PROGRESS A 2D and 3D figure modeler. Or, in other words: my own Blender. It's a fun, chill and cozy project thah I enjoy doing, and an awesome way to learn while playing on my computer!
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 1.15
~> 0.12.1
 Project Readme

Barretina

WORK IN PROGRESS

A 2D and 3D figure modeler.

Or, in other words: my own Blender.

Why?

Well, it's a good question. But maybe the answer isn't good enough: just for fun.

It's a fun, chill and cozy project thah I enjoy doing, and an awesome way to learn while playing on my computer!

My diary

I write in a diary every big commit, and I summarize the evolution of the project.

If you feel some interest, take a look to it now: it's free!

BCM: Barretina Console Mode

BCM is a way to run all Barretina's code without the graphic interface. I created with the intention to test while I work on this project.

Actually, it's IRB but with a particular configuration.

Run BCM

You can run BCM with the bin/bcm file:

$ bin/bcm
BCM - Barretina Console Mode
bcm:001:0> p = VectorSpace::Vector.new 1, 5
-> #<Vector (1, 5)>
bcm:002:0> q = VectorSpace::Vector.new 2, -3
-> #<Vector (2, -3)>
bcm:003:0> p + q
-> #<Vector (3, 2)>