commit 03bfa3faa0a99dfc2f9a1f7f22fd94e215c97032
Author: Bharatvaj Hemanth <bharatvaj@yahoo.com>
Date: Tue, 1 Apr 2025 00:26:41 +0530
Author: Bharatvaj Hemanth <bharatvaj@yahoo.com>
Date: Tue, 1 Apr 2025 00:26:41 +0530
Brave New World
5 files changed, 80 insertions(+), 0 deletions(-)
diff --git a/LICENSE b/LICENSE @@ -0,0 +1,3 @@ +CC execpt... + +This licence prevents the user from being titilated of the output from this program.
diff --git a/Makefile b/Makefile @@ -0,0 +1 @@ +fbic: fbic.c
diff --git a/README b/README @@ -0,0 +1,11 @@ +fbic +==== +fembale body inspector written in c99. + +For educational purposes only. Getting horny is strictly prohited. + +Use h,j,k,l to move the camera. + +See LICENSE + +This project is satire.
diff --git a/curves.txt b/curves.txt @@ -0,0 +1,40 @@ + +front + + )( +(,)(,) + ) ( +( \/ ) + +back + )( +(" ") + / \ +( \/ ) + +left front +_|( +\*)*) + ) / +(\ ) + + +top before head interacts + ,, +\,)(,/ + ( ) + + +bottom front +('/\`) +(_{}_) + +bottom +(_{}_) + +bottom back + \ / +(_{}_) + +top after head interacts +
diff --git a/fbic.c b/fbic.c @@ -0,0 +1,25 @@ +#include <stdio.h> + +// TODO use bitfields have two states to have +typedef enum { + TOP, + LEFT, + RIGHT, + FRONT, + BACK, + BOTTOM, + MIDDLE // for interpretting left top to +} CameraStates; + +TOP, LEFT +TOP, RIGHT +BOTTOM, LEFT +BOTTOM, RIGHT + + +// TODO + +int main(int argc, char* argv[]) { + printf("this is us\n"); + return 0; +}