added rotation matrix to the bizear curves
This commit is contained in:
@@ -119,7 +119,10 @@ int main (int argc, char *argv[]) {
|
|||||||
unsigned char keyPressed = 0;
|
unsigned char keyPressed = 0;
|
||||||
|
|
||||||
branch b = {
|
branch b = {
|
||||||
.startPos = (struct tart_vec2){term_current_size().x/2,term_current_size().y- 10},
|
.startPos = (nomi_vec2){term_current_size().x/2.0,term_current_size().y/2.0},
|
||||||
|
};
|
||||||
|
branch b1 = {
|
||||||
|
.startPos = (nomi_vec2){30,term_current_size().y- 10},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -149,12 +152,12 @@ int main (int argc, char *argv[]) {
|
|||||||
for (;!__Close__;) {
|
for (;!__Close__;) {
|
||||||
// LOOP START
|
// LOOP START
|
||||||
|
|
||||||
|
tart_restore_window(&window);
|
||||||
|
tart_restore_buffer(tart_get_buffer(&window, 0));
|
||||||
|
|
||||||
|
|
||||||
if(keyPressed) {
|
if(keyPressed) {
|
||||||
tart_draw_window(&window, 0);
|
tart_draw_window(&window, 0);
|
||||||
tart_restore_window(&window);
|
|
||||||
tart_restore_buffer(tart_get_buffer(&window, 0));
|
|
||||||
|
|
||||||
char c = term_tinput();
|
char c = term_tinput();
|
||||||
|
|
||||||
@@ -260,6 +263,7 @@ int main (int argc, char *argv[]) {
|
|||||||
|
|
||||||
|
|
||||||
DrawBranch(&b, &window, 0);
|
DrawBranch(&b, &window, 0);
|
||||||
|
//DrawBranch(&b1, &window, 0);
|
||||||
|
|
||||||
tart_draw_window(&window, 0);
|
tart_draw_window(&window, 0);
|
||||||
if(mode == COMMAND_MODE) {
|
if(mode == COMMAND_MODE) {
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
#define SPIREL_MOD 0.618055f
|
#define SPIREL_MOD 0.618055f
|
||||||
|
|
||||||
|
|
||||||
struct nomiSpirel {
|
struct nomiSpirel {
|
||||||
struct tart_cell selected_cell;
|
struct tart_cell selected_cell;
|
||||||
struct tart_cell unselected_cell;
|
struct tart_cell unselected_cell;
|
||||||
@@ -42,6 +43,31 @@ void CreaetBranch(trunk* trunk);
|
|||||||
* */
|
* */
|
||||||
branch* LocateBranch();
|
branch* LocateBranch();
|
||||||
|
|
||||||
|
|
||||||
|
float a = -3;
|
||||||
|
nomi_vec2 RotatePoint(nomi_vec2 or,nomi_vec2 t, nomi_vec2 d) {
|
||||||
|
nomi_vec2 pos;
|
||||||
|
|
||||||
|
//float a = atan2(d.y, d.x) - 3.14f/2;
|
||||||
|
a+= 0.001f;
|
||||||
|
pos.x = (t.x * cos(a) - t.y * sin(a));
|
||||||
|
pos.y = (t.x * sin(a) + t.y * cos(a))/2;
|
||||||
|
|
||||||
|
|
||||||
|
return pos;
|
||||||
|
}
|
||||||
|
|
||||||
|
nomi_curve RotateCurve(nomi_curve og, nomi_vec2 d) {
|
||||||
|
nomi_curve c;
|
||||||
|
c.start = og.start; // start is the origin so there is no need to rotate
|
||||||
|
c.start = RotatePoint(og.start, og.start, d); // this point
|
||||||
|
|
||||||
|
c.c0 = RotatePoint(og.start,og.c0,d);
|
||||||
|
c.c1 = RotatePoint(og.start,og.c1,d);
|
||||||
|
c.end = RotatePoint(og.start,og.end,d);
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Draw Branch
|
* Draw Branch
|
||||||
*/
|
*/
|
||||||
@@ -49,22 +75,26 @@ void DrawBranch(branch* branch, struct tart_window* w, tart_byte b) {
|
|||||||
struct tart_cell cell = NULL_CELL;
|
struct tart_cell cell = NULL_CELL;
|
||||||
cell.display = '*';
|
cell.display = '*';
|
||||||
struct nomiSpirel spirel;
|
struct nomiSpirel spirel;
|
||||||
|
nomi_curve c;
|
||||||
int SizeOfFile = 600;
|
int SizeOfFile = 600;
|
||||||
char cellChart[] = {'%','*','\\','/','l','&','7','+','=','^',':'};
|
char cellChart[] = {'%','*','\\','/','l','&','7','+','=','^',':'};
|
||||||
unsigned int iderations = 0;
|
unsigned int iderations = 0;
|
||||||
|
|
||||||
struct tart_vec2 pos0 = {
|
if(branch->curve.start.x == 0) {
|
||||||
(( 3) * -1)+branch->startPos.x,
|
branch->curve.start = (nomi_vec2){
|
||||||
(( 0/2) * -1)+branch->startPos.y};
|
0,
|
||||||
struct tart_vec2 c0 = {
|
0};
|
||||||
(( 25) * -1)+branch->startPos.x,
|
branch->curve.c0 = (nomi_vec2){
|
||||||
((35/2) * -1)+branch->startPos.y}; // controle point 0
|
(( 25) * -1),
|
||||||
struct tart_vec2 c1 = {
|
((35/2.f) * -1)}; // controle point 0
|
||||||
(( -10) * -1)+branch->startPos.x,
|
branch->curve.c1 = (nomi_vec2){
|
||||||
((35/2) * -1)+branch->startPos.y}; // controle point 1
|
(( -10) * -1),
|
||||||
struct tart_vec2 pos1 = {
|
((35/2.f) * -1)}; // controle point 1
|
||||||
(( 3) * -1)+branch->startPos.x,
|
branch->curve.end = (nomi_vec2){
|
||||||
((10/2) * -1)+branch->startPos.y};
|
(( 3) * -1),
|
||||||
|
((20/2.f) * -1)};
|
||||||
|
c = RotateCurve(branch->curve, (nomi_vec2){0,0});
|
||||||
|
}
|
||||||
|
|
||||||
struct tart_vec2 dpos = {0,0};
|
struct tart_vec2 dpos = {0,0};
|
||||||
float count = 0;
|
float count = 0;
|
||||||
@@ -78,21 +108,25 @@ void DrawBranch(branch* branch, struct tart_window* w, tart_byte b) {
|
|||||||
// 3 = right
|
// 3 = right
|
||||||
|
|
||||||
iderations++;
|
iderations++;
|
||||||
|
|
||||||
|
|
||||||
cell.display = cellChart[rand_r(&iderations)%11];
|
cell.display = cellChart[rand_r(&iderations)%11];
|
||||||
|
|
||||||
dpos = (struct tart_vec2){
|
dpos = (struct tart_vec2){
|
||||||
(1-count)*((1-count)*((1-count)*pos0.x + count * c0.x) +
|
(1-count)*((1-count)*((1-count)*c.start.x + count * c.c0.x) +
|
||||||
count * ((1-count)*c0.x + count*c1.x)) +
|
count * ((1-count)*c.c0.x + count*c.c1.x)) +
|
||||||
count * ((1-count)*((1-count)*c0.x + count * c1.x) +
|
count * ((1-count)*((1-count)*c.c0.x + count * c.c1.x) +
|
||||||
count * ((1-count)*c1.x + pos1.x)),
|
count * ((1-count)*c.c1.x + c.end.x)),
|
||||||
(1-count)*((1-count)*((1-count)*pos0.y + count * c0.y) + count *
|
(1-count)*((1-count)*((1-count)*c.start.y + count * c.c0.y) + count *
|
||||||
((1-count)*c0.y + count*c1.y)) +
|
((1-count)*c.c0.y + count*c.c1.y)) +
|
||||||
count *((1-count)*((1-count)*c0.y + count * c1.y) +
|
count *((1-count)*((1-count)*c.c0.y + count * c.c1.y) +
|
||||||
count * ((1-count)*c1.y + pos1.y)),
|
count * ((1-count)*c.c1.y + c.end.y)),
|
||||||
};
|
};
|
||||||
|
dpos.x += branch->startPos.x;
|
||||||
tart_draw_cell_position(tart_get_buffer(w, b), cell, dpos);
|
dpos.y += branch->startPos.y;
|
||||||
|
if(dpos.x >= 0 && dpos.y >=0) {
|
||||||
|
tart_draw_cell_position(tart_get_buffer(w, b), cell, dpos);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -24,13 +24,27 @@
|
|||||||
|
|
||||||
typedef unsigned int branchId;
|
typedef unsigned int branchId;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
double x;
|
||||||
|
double y;
|
||||||
|
} nomi_vec2;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
nomi_vec2 start;
|
||||||
|
nomi_vec2 c0;
|
||||||
|
nomi_vec2 c1;
|
||||||
|
nomi_vec2 end;
|
||||||
|
|
||||||
|
} nomi_curve;
|
||||||
|
|
||||||
// All of the different notes
|
// All of the different notes
|
||||||
typedef struct {
|
typedef struct {
|
||||||
char* text; // This is the data that is in that branch
|
char* text; // This is the data that is in that branch
|
||||||
branchId children[MAX_CHILDREN]; // holds the branchIds of its children
|
branchId children[MAX_CHILDREN]; // holds the branchIds of its children
|
||||||
void* parent; // points the the branches parent
|
void* parent; // points the the branches parent
|
||||||
char type; // holds the type as in if this struct is a branch or a trunk
|
char type; // holds the type as in if this struct is a branch or a trunk
|
||||||
struct tart_vec2 startPos; // the starting position of the branch
|
nomi_vec2 startPos; // the starting position of the branch
|
||||||
|
nomi_curve curve;
|
||||||
branchId id; // This holds the branch id.
|
branchId id; // This holds the branch id.
|
||||||
} branch;
|
} branch;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user