本文整理汇总了C++中save_extension函数的典型用法代码示例。如果您正苦于以下问题:C++ save_extension函数的具体用法?C++ save_extension怎么用?C++ save_extension使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了save_extension函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: main
int main() {
screen s;
color c;
c.red = MAX_COLOR;
c.green = MAX_COLOR;
c.blue = 0;
clear_screen(s);
int i, j;
for (i=0; i < YRES; i++)
for (j=0; j < XRES; j++)
plot(s, c, i, j);
c.green = 0;
for (i = 0; i<100; i++) {
draw_line(250, 250, 10+i, 10+i, s, c);
}
draw_line(1, 1, 60, 70, s, c);
//Note: Display may not work on your system
//save_ppm and save_extension should be fine
display(s);
save_ppm(s, "pic.ppm");
save_extension(s, "whatevs.png");
}
开发者ID:stuydw,项目名称:line,代码行数:29,代码来源:main.c
示例2: display
/*======== void display() ==========
Inputs: screen s
Returns:
Will display the screen s on your monitor
02/12/10 09:16:30
jdyrlandweaver
====================*/
void display( screen s) {
int x, i;
char *fname = ".tmp.png";
save_extension(s, fname);
i = fork();
if (i == 0) {
execlp("display", "display", fname, NULL);
}
else {
wait(&x);
remove( fname );
}
/* For some reason, this refuses to run correctly
on some systems. Most likely a strange imagemagick
install issue.
Above is a workaroudn for now.
int x, y;
FILE *f;
f = popen("display", "w");
fprintf(f, "P3\n%d %d\n%d\n", XRES, YRES, MAX_COLOR);
for ( y=0; y < YRES; y++ ) {
for ( x=0; x < XRES; x++)
fprintf(f, "%d %d %d ", s[x][y].red, s[x][y].green, s[x][y].blue);
fprintf(f, "\n");
}
pclose(f);
*/
}
开发者ID:leoncheng57,项目名称:graphics-9-final,代码行数:39,代码来源:display.c
示例3: main
int main() {
screen s;
color c;
c.red = MAX_COLOR;
c.green = MAX_COLOR;
c.blue = 0;
clear_screen(s);
int i, j;
for (i=0; i < YRES; i++)
for (j=-500; j < XRES; j++ )
plot(s, c, i, j);
c.green = 0;
draw_line(0, 0, 400, 350, s, c); //oct 1
draw_line(0, 0, 400, 450, s, c); //oct 2
//draw_line(20, 20, 300, 250, s, c); //oct 5
draw_line(20, 350, 300, 100, s, c); //oct 6
//draw_line(0, 0, 400, 350, s, c);
//draw_line(0, 0, 400, 350, s, c);
//Note: Display may not work on your system
//save_ppm and save_extension should be fine
save_ppm(s, "pic.ppm");
save_extension(s, "whatevs.png");
//display(s);
}
开发者ID:sduncan,项目名称:Code,代码行数:34,代码来源:main.c
示例4: main
int main() {
screen s;
color c;
c.red = 0;
c.green = 255;
c.blue = 255;
int i, j;
for( i=0; i<XRES; i++)
for ( j=0; j<YRES; j++) {
/*
c.red = random() % (MAX_COLOR + 1);
c.green = random() % (MAX_COLOR + 1);
c.blue = random() % (MAX_COLOR + 1);
*/
c.red= 190;
c.blue =150;
c.green=175;
plot( s, c, i, j);
}
c.blue=255;
c.red =0;
c.green = 150;
printf("Matrix Testing Area. Please stand well out of range of the matrix that is about to happen.\n");
printf("Making a 3X6 matrix.\n\n");
struct matrix* testing = new_matrix(3,6);
add_edge(testing, 1, 11, 1, 2, 12, 1);
add_edge(testing, 3, 13, 1, 4, 14, 1);
add_edge(testing, 5, 15, 1, 6, 16, 1);
printf("Points made. Print test.\n");
print_matrix(testing);
printf("Scalar Multiplication Test:\n");
scalar_mult(3, testing);
print_matrix(testing);
printf("Identity test. Time to face the facts.\n");
struct matrix* identity = new_matrix(6, 6);
ident(identity);
print_matrix(identity);
printf("Testing matrix multiplication. Prepare your eyes. Multiplying by the identity matrix now.\n");
matrix_mult(testing, identity);
print_matrix(identity);
drawPicture(s, c);
display( s );
save_ppm(s, "image" );
save_extension(s, "image.jpg");
}
开发者ID:stuydw,项目名称:matrix,代码行数:58,代码来源:main.c
示例5: main
int main() {
screen s;
color c;
/* Setup color and screen */
clear_screen(s);
c.red = 255;
c.green = 150;
c.blue = 100;
/* Setup matrices */
struct matrix *edges;
struct matrix *transform;
edges = new_matrix(4, 1);
/* Finally Testing */
add_edge(edges, 80, 80, 0, 80, 120, 0);
add_edge(edges, 80, 120, 0, 120, 120, 0);
add_edge(edges, 120, 120, 0, 120, 80, 0);
add_edge(edges, 120, 80, 0, 80, 80, 0);
add_edge(edges, 60, 80, 0, 80, 120, 0);
add_edge(edges, 80, 120, 0, 100, 100, 0);
add_edge(edges, 100, 100, 0, 80, 60, 0);
add_edge(edges, 80, 60, 0, 60, 80, 0);
add_edge(edges, 90, 90, 0, 110, 90, 0);
add_edge(edges, 110, 90, 0, 110, 110, 0);
add_edge(edges, 110, 110, 0, 90, 110, 0);
add_edge(edges, 90, 110, 0, 90, 90, 0);
draw_lines(edges, s, c);
int i;
for (i = 0; i < 40; i+=2) {
transform = make_translate(i, i, i);
matrix_mult(transform, edges);
draw_lines(edges, s, c);
}
display(s);
save_extension(s, "matrix.png");
/* Free Matrices */
free_matrix( transform );
free_matrix( edges );
return 0;
}
开发者ID:young-k,项目名称:Notes,代码行数:56,代码来源:main.c
示例6: main
int main() {
screen s;
color c;
int x1, y1;
c.red = MAX_COLOR;
c.green = MAX_COLOR;
c.blue = MAX_COLOR;
clear_screen(s);
int i, j;
for (i=0; i < YRES; i++)
for (j=0; j < XRES; j++ )
plot(s, c, i, j);
c.green = 0;
c.blue = 0;
x1 = 500;
y1 = 250;
while (x1 >= 250) {
draw_line(250, 250, x1, y1, s, c);
c.red-=2;
c.green++;
x1--;
y1++;
}
while (y1 >= 250) {
draw_line(250, 250, x1, y1, s, c);
c.green--;
c.blue--;
x1--;
y1--;
}
while (x1 <= 250) {
draw_line(250, 250, x1, y1, s, c);
c.red++;
x1++;
y1--;
}
while (y1 <= 250) {
draw_line(250, 250, x1, y1, s, c);
c.green++;
x1++;
y1++;
}
//Note: Display may not work on your system
//save_ppm and save_extension should be fine
display(s);
save_ppm(s, "pic.ppm");
save_extension(s, "whatevs.png");
}
开发者ID:stuydw,项目名称:line,代码行数:56,代码来源:main.c
示例7: main
int main() {
screen s;
color c;
c.red = 0;
c.green = MAX_COLOR;
c.blue = 0;
clear_screen(s);
//octant 1
draw_line( 0, 0, XRES-1, YRES - 75, s, c);
//octant 2
draw_line( 0, 0, XRES - 75, YRES-1, s, c);
//octant 8
draw_line( 0, YRES-1, XRES-1, 75, s, c);
//octant 7
draw_line( 0, YRES-1, XRES - 75, 0, s, c);
c.green = 0;
c.blue = MAX_COLOR;
//octant 5
draw_line( XRES - 1, YRES - 1, 0, 75, s, c);
//octant 6
draw_line( XRES - 1, YRES -1, 75, 0, s, c);
//octant 4
draw_line( XRES - 1, 0, 0, YRES - 75, s, c);
//octant 3
draw_line( XRES - 1, 0, 75, YRES - 1, s, c);
c.blue = 0;
c.red = MAX_COLOR;
//y = x, y = -x
draw_line( 0, 0, XRES - 1, YRES - 1, s, c);
draw_line( 0, YRES - 1, XRES - 1, 0, s, c);
//horizontal, vertical line
draw_line( 0, YRES / 2, XRES - 1, YRES / 2, s, c);
draw_line( XRES / 2, 0, XRES / 2, YRES - 1, s, c);
int len = 1;
int i;
while (i<XRES-1){
c.blue = (c.blue + 1)%256;
draw_line(i,i,(i*i)%XRES,i,s,c);
draw_line(i,i,i,(i*i)%YRES,s,c);
i++;
}
display(s);
save_extension(s, "lines.png");
}
开发者ID:ivlin,项目名称:graphics-homeworks,代码行数:55,代码来源:main.c
示例8: main
int main(){
screen s;
color c;
c.red = 0;
c.green = 0;
c.blue = MAX_COLOR;
int ctr = 0;
while (ctr <= 200){
draw_line(0, ctr, XRES-1, YRES-1, s, c);
ctr ++;
c.red = ctr % MAX_COLOR;
}
c.red = 0;
ctr = 0;
while (ctr <= 200){
draw_line(XRES-1, YRES-1, ctr, 0, s, c);
ctr ++;
c.green = ctr % MAX_COLOR;
}
c.green = 0;
ctr = 0;
while (ctr < XRES){
draw_line(0, 201, ctr, YRES-1, s, c);
ctr ++;
c.green = ctr % MAX_COLOR;
}
c.green = 0;
ctr = 0;
while (ctr < YRES){
draw_line(201, 0, XRES-1, ctr, s, c);
ctr ++;
c.red = ctr % MAX_COLOR;
}
save_extension(s, "pic.png");
display(s);
return 0;
}
开发者ID:mpapallo,项目名称:Graphics_Work1,代码行数:46,代码来源:coolmain.c
示例9: main
int main() {
screen s;
color c;
c.red = 0;
c.green = MAX_COLOR;
c.blue = 0;
clear_screen(s);
//octant 1
draw_line( 0, 0, XRES-1, YRES - 75, s, c);
//octant 2
draw_line( 0, 0, XRES - 75, YRES-1, s, c);
//octant 8
draw_line( 0, YRES-1, XRES-1, 75, s, c);
//octant 7
draw_line( 0, YRES-1, XRES - 75, 0, s, c);
c.green = 0;
c.blue = MAX_COLOR;
//octant 5
draw_line( XRES - 1, YRES - 1, 0, 75, s, c);
//octant 6
draw_line( XRES - 1, YRES -1, 75, 0, s, c);
//octant 4
draw_line( XRES - 1, 0, 0, YRES - 75, s, c);
//octant 3
draw_line( XRES - 1, 0, 75, YRES - 1, s, c);
c.blue = 0;
c.red = MAX_COLOR;
//y = x, y = -x
draw_line( 0, 0, XRES - 1, YRES - 1, s, c);
draw_line( 0, YRES - 1, XRES - 1, 0, s, c);
//horizontal, vertical line
draw_line( 0, YRES / 2, XRES - 1, YRES / 2, s, c);
draw_line( XRES / 2, 0, XRES / 2, YRES - 1, s, c);
*/
display(s);
save_extension(s, "lines.png");
}
开发者ID:JayStuy,项目名称:line_maker,代码行数:46,代码来源:main.c
示例10: main
int main( int argc, char** argv ) {
screen s;
struct matrix *edges;
struct matrix *transform;
color c;
c.red = 0;
c.green = 255;
c.blue = 255;
edges = new_matrix(4, 4);
transform = new_matrix(4, 4);
if ( argc == 2 )
parse_file( argv[1], transform, edges, s );
else
parse_file( "stdin", transform, edges, s );
add_edge( edges, 250,0,0, 250,25,0 );//M
add_edge( edges, 250,25,0, 263,0,0 );
add_edge( edges, 263,0,0, 275,25,0 );
add_edge( edges, 275,25,0, 275,0,0 );
add_edge( edges, 280,0,0, 293,25,0 );//A
add_edge( edges, 293,25,0, 305,0,0 );
add_edge( edges, 287,13,0, 299,13,0 );
add_edge( edges, 310,0,0, 325,25,0 );//Y
add_edge( edges, 318,13,0, 305,25,0 );
add_edge( edges, 330,0,0, 343,25,0 );//A
add_edge( edges, 343,25,0, 355,0,0 );
add_edge( edges, 337,13,0, 349,13,0 );
add_edge( edges, 360,0,0, 360,25,0 );//N
add_edge( edges, 360,25,0, 385,0,0 );
add_edge( edges, 385,0,0, 385,25,0 );
add_edge( edges, 390,0,0, 390,25,0 );//K
add_edge( edges, 390,13,0, 408,25,0 );
add_edge( edges, 395,14,0, 408,0,0 );
draw_lines(edges, s, c);
save_extension(s, "dimensional.png");
display(s);
free_matrix( transform );
free_matrix( edges );
}
开发者ID:mayankvanjani,项目名称:mayank_el_3D,代码行数:44,代码来源:main.c
示例11: arguemnts
//.........这里部分代码省略.........
the trig functions int math.h use radian mesure, but us normal
humans use degrees, so the file will contain degrees for rotations,
be sure to conver those degrees to radians (M_PI is the constant
for PI)
jdyrlandweaver
====================*/
void parse_file ( char * filename,
struct matrix * transform,
struct matrix * pm,
screen s) {
double args [6];
char command [25];
color c;
c.red = 255;
c.blue = 0;
c.green = 0;
FILE *f = fopen(filename, "r");
if(f == NULL) {
printf("cannot find file\n");
exit(1);
}
while(fgets(command, 25, f)){
if(command[0] == 'l') {
fgets(command, 25, f);
sscanf(command, "%lf %lf %lf %lf %lf %lf", &args[0], &args[1], &args[2], &args[3], &args[4], &args[5]);
add_edge(pm, args[0], args[1], args[2], args[3], args[4], args[5]);
}
else if (command[0] == 'i') {
ident(transform);
}
else if (command[0] == 's') {
fgets(command, 25, f);
sscanf(command, "%lf %lf %lf", &args[0], &args[1], &args[2]);
matrix_mult(make_scale(args[0], args[1], args[2]), transform);
}
else if (command[0] == 't') {
fgets(command, 25, f);
sscanf(command, "%lf %lf %lf", &args[0], &args[1], &args[2]);
struct matrix *m;
m = make_translate(args[0], args[1], args[2]);
matrix_mult(m, transform);
}
else if (command[0] == 'x') {
fgets(command, 25, f);
sscanf(command, "%lf", &args[0]);
struct matrix *m;
m = make_rotX(args[0]);
matrix_mult(m, transform);
}
else if (command[0] == 'y') {
fgets(command, 25, f);
sscanf(command, "%lf", &args[0]);
struct matrix *m;
m = make_rotY(args[0]);
matrix_mult(m, transform);
}
else if (command[0] == 'z') {
fgets(command, 25, f);
sscanf(command, "%lf", &args[0]);
struct matrix *m;
m = make_rotZ(args[0]);
matrix_mult(m, transform);
}
else if (command[0] == 'a') {
matrix_mult(transform, pm);
}
else if (command[0] == 'v') {
draw_lines(pm, s, c);
}
else if (command[0] == 'g') {
draw_lines(pm, s, c);
fgets(command, 25, f);
int i = strlen(command);
command[i] = '\0';
save_extension(s, command);
}
else if (command[0] == 'q') {
exit(1);
}
}
}
开发者ID:stuydw,项目名称:transformations,代码行数:101,代码来源:parser.c
示例12: arguemnts
//.........这里部分代码省略.........
add_box(pm, x, y, z, width, height, depth);
//printf( "%lf %lf %lf\n", x, y, z);
}
else if ( strncmp(line, "sphere", strlen(line)) == 0 ) {
//printf("SPHERE\n");
fgets(line, 255, f);
sscanf(line, "%lf %lf %lf", &x, &y, &radius);
add_sphere(pm, x, y, radius, 0.01);
//printf( "%lf %lf %lf\n", x, y, z);
}
else if ( strncmp(line, "torus", strlen(line)) == 0 ) {
//printf("TORUS\n");ds
fgets(line, 255, f);
sscanf(line, "%lf %lf %lf %lf", &x, &y, &radius1, &radius2 );
add_torus(pm, x, y, radius1, radius2, 0.01);
//printf( "%lf %lf %lf\n", x, y, z);
}
else if ( strncmp(line, "scale", strlen(line)) == 0 ) {
//printf("SCALE\n");
fgets(line, 255, f);
//line[strlen(line)-1]='\0';
sscanf(line, "%lf %lf %lf", &x, &y, &z);
tmp = make_scale(x, y, z);
matrix_mult(tmp, transform);
//print_matrix(transform);
}
else if ( strncmp(line, "translate", strlen(line)) == 0 ) {
//printf("TRANSLATE\n");
fgets(line, 255, f);
// line[strlen(line)-1]='\0';
sscanf(line, "%lf %lf %lf", &x, &y, &z);
tmp = make_translate(x, y, z);
matrix_mult(tmp, transform);
//print_matrix(transform);
}
else if ( strncmp(line, "xrotate", strlen(line)) == 0 ) {
//printf("ROTATE!\n");
fgets(line, 255, f);
sscanf(line, "%lf", &angle);
angle = angle * (M_PI / 180);
tmp = make_rotX( angle);
matrix_mult(tmp, transform);
}
else if ( strncmp(line, "yrotate", strlen(line)) == 0 ) {
//printf("ROTATE!\n");
fgets(line, 255, f);
sscanf(line, "%lf", &angle);
angle = angle * (M_PI / 180);
tmp = make_rotY( angle);
matrix_mult(tmp, transform);
}
else if ( strncmp(line, "zrotate", strlen(line)) == 0 ) {
//printf("ROTATE!\n");
fgets(line, 255, f);
sscanf(line, "%lf", &angle);
angle = angle * (M_PI / 180);
tmp = make_rotZ( angle);
matrix_mult(tmp, transform);
}
else if ( strncmp(line, "ident", strlen(line)) == 0 ) {
ident(transform);
}
else if ( strncmp(line, "apply", strlen(line)) == 0 ) {
//printf("APPLY!\n");
//print_matrix( transform );
// print_matrix(pm);
matrix_mult(transform, pm);
}
else if ( strncmp(line, "display", strlen(line)) == 0 ) {
clear_screen(s);
draw_lines(pm, s, g);
display(s);
}
else if ( strncmp(line, "save", strlen(line)) == 0 ) {
fgets(line, 255, f);
// line[strlen(line)-1] = '\0';
clear_screen(s);
draw_lines(pm, s, g);
save_extension(s, line);
}
else if ( strncmp(line, "clear", strlen(line)) == 0 ) {
fgets(line, 255, f);
// line[strlen(line)-1] = '\0';
clear_screen(s);
}
else if ( strncmp(line, "quit", strlen(line)) == 0 ) {
return;
}
else if (strncmp(line, "#", strlen(1)) == 0){
}
else {
printf("Invalid command\n");
}
}
free_matrix(tmp);
fclose(f);
//printf("END PARSE\n");
}
开发者ID:nspektor,项目名称:3dHW,代码行数:101,代码来源:parser.c
示例13: arguemnts
//.........这里部分代码省略.........
}
else if ( strncmp(line, "scale", strlen(line)) == 0 ) {
fgets(line, 255, f);
//line[strlen(line)-1]='\0';
sscanf(line, "%lf %lf %lf", &x, &y, &z);
tmp = make_scale(x, y, z);
//matrix_mult(tmp, transform);
//print_matrix(transform);
//matrix_mult( tmp, STACK->data[ STACK->top ] );
matrix_mult( STACK->data[ STACK->top ], tmp );
copy_matrix( tmp, STACK->data[ STACK->top ] );
}
else if ( strncmp(line, "translate", strlen(line)) == 0 ) {
//printf("TRANSLATE\n");
fgets(line, 255, f);
sscanf(line, "%lf %lf %lf", &x, &y, &z);
tmp = make_translate(x, y, z);
//matrix_mult(tmp, transform);
//matrix_mult( tmp, STACK->data[ STACK->top ] );
matrix_mult( STACK->data[ STACK->top ], tmp );
copy_matrix( tmp, STACK->data[ STACK->top ] );
}
else if ( strncmp(line, "xrotate", strlen(line)) == 0 ) {
//printf("ROTATE!\n");
fgets(line, 255, f);
sscanf(line, "%lf", &angle);
angle = angle * (M_PI / 180);
tmp = make_rotX( angle);
//matrix_mult(tmp, transform);
//matrix_mult( tmp, STACK->data[ STACK->top ] );
matrix_mult( STACK->data[ STACK->top ], tmp );
copy_matrix( tmp, STACK->data[ STACK->top ] );
}
else if ( strncmp(line, "yrotate", strlen(line)) == 0 ) {
//printf("ROTATE!\n");
fgets(line, 255, f);
sscanf(line, "%lf", &angle);
angle = angle * (M_PI / 180);
tmp = make_rotY( angle);
//matrix_mult(tmp, transform);
//matrix_mult( tmp, STACK->data[ STACK->top ] );
matrix_mult( STACK->data[ STACK->top ], tmp );
copy_matrix( tmp, STACK->data[ STACK->top ] );
}
else if ( strncmp(line, "zrotate", strlen(line)) == 0 ) {
//printf("ROTATE!\n");
fgets(line, 255, f);
sscanf(line, "%lf", &angle);
angle = angle * (M_PI / 180);
tmp = make_rotZ( angle);
//matrix_mult(tmp, transform);
//matrix_mult( tmp, STACK->data[ STACK->top ] );
matrix_mult( STACK->data[ STACK->top ], tmp );
copy_matrix( tmp, STACK->data[ STACK->top ] );
}
else if ( strncmp(line, "ident", strlen(line)) == 0 ) {
ident(transform);
}
else if ( strncmp(line, "apply", strlen(line)) == 0 ) {
//printf("APPLY!\n");
//print_matrix( transform );
// print_matrix(pm);
matrix_mult(transform, pm);
}
else if ( strncmp(line, "print", strlen(line)) == 0) {
print_matrix( STACK->data[ STACK->top ] );
}
else if ( strncmp(line, "display", strlen(line)) == 0 ) {
display(s);
}
else if ( strncmp(line, "save", strlen(line)) == 0 ) {
fgets(line, 255, f);
// line[strlen(line)-1] = '\0';
//clear_screen(s);
//draw_polygons(pm, s, g);
save_extension(s, line);
}
else if ( strncmp(line, "clear", strlen(line)) == 0 ) {
pm->lastcol = 0;
}
else if ( strncmp(line, "quit", strlen(line)) == 0 ) {
return;
}
else if ( strncmp(line, "push", strlen(line)) == 0 ) {
push( STACK ); //seg fault
printf("Pushed\n");
}
else if ( strncmp(line, "pop", strlen(line)) == 0 ) {
pop( STACK );
printf("Popped\n");
}
else if ( line[0] != '#' ) {
printf("Invalid command\n");
}
}
free_matrix(tmp);
fclose(f);
//printf("END PARSE\n");
}
开发者ID:RongYu98,项目名称:MDL,代码行数:101,代码来源:parser.c
示例14: main
//.........这里部分代码省略.........
c.red = 0;
c.green = MAX_COLOR;
c.blue = 0;
clear_screen(s);
/*
//octant 1
draw_line( 0, 0, XRES-1, YRES - 75, s, c);
// draw_line( XRES-1, YRES - 75, 0, 0, s, c);
//octant 2
draw_line( 0, 0, XRES - 75, YRES-1, s, c);
//octant 8
draw_line( 0, YRES-1, XRES-1, 75, s, c);
//octant 7
draw_line( 0, YRES-1, XRES - 75, 0, s, c);
c.green = 0;
c.blue = MAX_COLOR;
//octant 5
draw_line( XRES - 1, YRES - 1, 0, 75, s, c);
//octant 6
draw_line( XRES - 1, YRES -1, 75, 0, s, c);
//octant 4
draw_line( XRES - 1, 0, 0, YRES - 75, s, c);
//octant 3
draw_line( XRES - 1, 0, 75, YRES - 1, s, c);
c.blue = 0;
c.red = MAX_COLOR;
//y = x, y = -x
draw_line( 0, 0, XRES - 1, YRES - 1, s, c);
draw_line( 0, YRES - 1, XRES - 1, 0, s, c);
//horizontal, vertical line
draw_line( 0, YRES / 2, XRES - 1, YRES / 2, s, c);
draw_line( XRES / 2, 0, XRES / 2, YRES - 1, s, c);
draw_coord(s, c);
draw_border(s, c);
*/
c.red = MAX_COLOR;
c.green = 0;
c.blue = 0;
for ( i = 0; i < XRES; i+=6 ) {
draw_line( XRES / 2, YRES / 2, i, 0, s, c );
c.red = c.red - 3;
c.green = c.green + 3;
}
c.red = 0;
c.green = MAX_COLOR;
for ( i = 0; i < YRES; i+=6 ) {
draw_line( XRES / 2, YRES / 2, YRES, i, s, c );
c.green = c.green - 3;
c.blue = c.blue + 3;
}
c.green = 0;
c.blue = MAX_COLOR;
for (i = 0; i < XRES; i+=6 ) {
draw_line( XRES / 2, YRES /2, XRES - i, YRES, s, c );
c.blue = c.blue - 3;
c.green += 3;
c.red += 3;
}
c.blue = 0;
for (i = 0; i < XRES; i+=6 ) {
draw_line( XRES / 2, YRES /2, 0, YRES - i, s, c );
c.green -= 3;
}
for ( i = 0; i < XRES; i++ ) {
for ( j = 0; j < YRES; j++ ) {
if ( i % 100 <= 3 || j % 100 <= 3 ) {
c.red = MAX_COLOR;
c.green = MAX_COLOR / 2 + 50;
c.blue = MAX_COLOR;
plot (s, c, i, j);
}
}
}
for ( i = 0; i < XRES; i+=10 ) {
c.red = 0;
c.green = 0;
c.blue = 0;
draw_line( i, 0, 0, i, s, c );
draw_line( i, 0, YRES - i, XRES, s, c );
draw_line( 0, i, XRES, YRES - i, s, c );
}
draw_border(s, c);
save_extension(s, "lines.png");
display(s);
}
开发者ID:mayankvanjani,项目名称:mayank_el_lines,代码行数:101,代码来源:main.c
示例15: arguments
//.........这里部分代码省略.........
add_curve(pm, x1, y1, x2, y2, x3, y3, x4, y4, 0.01, BEZIER_MODE );
//printf( "%lf %lf %lf\n", x, y, z);
break;
case 'h':
fgets(line, 255, f);
sscanf(line, "%lf %lf %lf %lf %lf %lf %lf %lf",
&x1, &y1, &x2, &y2, &x3, &y3, &x4, &y4);
add_curve(pm, x1, y1, x2, y2, x3, y3, x4, y4, 0.01, HERMITE_MODE );
//printf( "%lf %lf %lf\n", x, y, z);
break;
case 's':
//printf("SCALE\n");
fgets(line, 255, f);
//line[strlen(line)-1]='\0';
sscanf(line, "%lf %lf %lf", &x, &y, &z);
tmp = make_scale(x, y, z);
matrix_mult(tmp, transform);
//print_matrix(transform);
break;
case 't':
//printf("TRANSLATE\n");
fgets(line, 255, f);
// line[strlen(line)-1]='\0';
sscanf(line, "%lf %lf %lf", &x, &y, &z);
tmp = make_translate(x, y, z);
matrix_mult(tmp, transform);
//print_matrix(transform);
break;
case 'x':
//printf("ROTATE!\n");
fgets(line, 255, f);
sscanf(line, "%lf", &angle);
angle = angle * (M_PI / 180);
tmp = make_rotX( angle);
matrix_mult(tmp, transform);
break;
case 'y':
//printf("ROTATE!\n");
fgets(line, 255, f);
sscanf(line, "%lf", &angle);
angle = angle * (M_PI / 180);
tmp = make_rotY( angle);
matrix_mult(tmp, transform);
break;
case 'z':
//printf("ROTATE!\n");
fgets(line, 255, f);
sscanf(line, "%lf", &angle);
angle = angle * (M_PI / 180);
tmp = make_rotZ( angle);
matrix_mult(tmp, transform);
break;
case 'i':
ident(transform);
break;
case 'a':
//printf("APPLY!\n");
//print_matrix( transform );
// print_matrix(pm);
matrix_mult(transform, pm);
break;
case 'v':
/*
clear_screen(s);
draw_lines(pm, s, g);
display(s);
break;
*/
// Second version for triangles:
clear_screen(s);
draw_polygons(pm, s, g);
display(s);
break;
case 'w':
pm->lastcol = 0;
break;
case 'g':
fgets(line, 255, f);
// line[strlen(line)-1] = '\0';
clear_screen(s);
draw_polygons(pm, s, g);
save_extension(s, line);
break;
case 'q':
return;
case '#':
break;
default:
printf("Invalid command\n");
break;
}
}
free_matrix(tmp);
fclose(f);
//printf("END PARSE\n");
}
开发者ID:stuydw,项目名称:polygons,代码行数:101,代码来源:parser.c
示例16: main
int main() {
//Basic Matrix Math
struct matrix *a;
struct matrix *b;
a=new_matrix(4,4);
b=new_matrix(4,2);
printf("Identity matrix:\n");
ident(a);
print_matrix(a);
b->m[0][0]=1;
b->m[0][1]=2;
b->m[1][0]=3;
b->m[1][1]=4;
b->m[2][0]=5;
b->m[2][1]=6;
b->m[3][0]=7;
b->m[3][1]=8;
printf("Matrix #2:\n");
print_matrix(b);
printf("Scalar Multiplication by 2:\n");
scalar_mult(2, b);
print_matrix(b);
printf("New Matrix #1:\n");
a->m[2][1]=3;
a->m[0][3]=2;
print_matrix(a);
printf("Matrix Multiplication:\n");
matrix_mult(a, b);
print_matrix(b);
printf("Adding points/edges:\n");
struct matrix *d;
d = new_matrix(3, 3);
add_point(d, 200,400,70);
add_point(d, 200,0,7);
print_matrix(d);
printf("\n");
add_edge(d, 300,500,100,300,100,134);
add_edge(d, 100,500,100,100,100,134);
add_edge(d, 400,00,100,400,400,134);
print_matrix(d);
printf("\n");
screen s;
color c;
c.red = 200;
c.green = 100;
c.blue = 250;
int i, j;
for( i=0; i<XRES; i++)
for ( j=0; j<YRES; j++) {
plot( s, c, i, j);
}
c.red=0;
c.green=200;
c.blue=200;
draw_lines(d, s, c);
display( s );
save_ppm(s, "image" );
save_extension(s, "image.jpg");
}
开发者ID:stuydw,项目名称:matrix,代码行数:80,代码来源:main.c
示例17: source
//.........这里部分代码省略.........
draw_lines( tmp, t, g );
tmp->lastcol = 0;
break;
case MOVE:
//printf("Move\n");
//get the factors
xval = op[i].op.move.d[0];
yval = op[i].op.move.d[1];
zval = op[i].op.move.d[2];
v = op[i].op.move.p;
if(v){
xval = xval * v->s.value;
yval = yval * v->s.value;
zval = zval * v->s.value;
}
//printf("x: %f y: %f z: %f\n", xval, yval, zval);
transform = make_translate( xval, yval, zval );
//multiply by the existing origin
matrix_mult( s->data[ s->top ], transform );
//put the new matrix on the top
copy_matrix( transform, s->data[ s->top ] );
free_matrix( transform );
break;
case SCALE:
//printf("Scale\n");
xval = op[i].op.scale.d[0];
yval = op[i].op.scale.d[1];
zval = op[i].op.scale.d[2];
v = op[i].op.scale.p;
if(v){
//printf("I'm not null Scale\n");
xval *= v->s.value;
yval *= v->s.value;
zval *= v->s.value;
}
transform = make_scale( xval, yval, zval );
matrix_mult( s->data[ s->top ], transform );
//put the new matrix on the top
copy_matrix( transform, s->data[ s->top ] );
free_matrix( transform );
break;
case ROTATE:
//printf("Rotate\n");
xval = op[i].op.rotate.degrees * ( M_PI / 180 );
v = op[i].op.rotate.p;
if(v){
xval *= v->s.value;
}
//get the axis
if ( op[i].op.rotate.axis == 0 )
transform = make_rotX( xval );
else if ( op[i].op.rotate.axis == 1 )
transform = make_rotY( xval );
else if ( op[i].op.rotate.axis == 2 )
transform = make_rotZ( xval );
matrix_mult( s->data[ s->top ], transform );
//put the new matrix on the top
copy_matrix( transform, s->data[ s->top ] );
free_matrix( transform );
break;
case PUSH:
//printf("Push\n");
push( s );
break;
case POP:
//printf("Pop\n");
pop( s );
break;
case SAVE:
//printf("Save\n");
save_extension( t, op[i].op.save.p->name );
break;
case DISPLAY:
//printf("Display\n");
display( t );
break;
}
}
if(num_frames>1){
sprintf (frame_name, "%s%03d.png", name, f);
save_extension(t, frame_name);
}
clear_screen(t);
free_stack(s);
free_matrix(tmp);
}
//free_stack( s );
//free_matrix( tmp );
//free_matrix( transform );
}
开发者ID:IshraqBhuiyan,项目名称:mdl_animation,代码行数:101,代码来源:my_main.c
示例18: my_main
void my_main( int polygons ) {
int i;
double step;
double xval, yval, zval;
struct matrix *transform;
struct matrix *tmp;
struct stack *s;
screen t;
color g;
s = new_stack();
tmp = new_matrix(4, 1000);
clear_screen( t );
for (i=0;i<lastop;i++) {
switch (op[i].opcode) {
//simple cases
//i realized that you already defined these constants in another
//file after looking at this for 30 min -_-
case POP:
pop(s);
break;
case PUSH:
push(s);
break;
//move,scale,rotate
case MOVE:
transform = make_translate(op[i].op.move.d[0],op[i].op.move.d[1],
op[i].op.move.d[2]);
matrix_mult(transform,s->data[s->top]);
free_matrix(transform);
break;
case ROTATE:
//there are 3 rotations possible, SO SWITCH-CEPTION!
switch((int)op[i].op.rotate.axis)
{
case ROT_X:
transform = make_rotX(op[i].op.rotate.degrees);
break;
case ROT_Y:
transform = make_rotY(op[i].op.rotate.degrees);
break;
case ROT_Z:
transform = make_rotZ(op[i].op.rotate.degrees);
break;
}
matrix_mult(transform,s->data[s->top]);
free_matrix(transform);
break;
case SCALE:
transform = make_scale(op[i].op.scale.d[0],op[i].op.scale.d[1],
op[i].op.scale.d[2]);
matrix_mult(transform,s->data[s->top]);
free_matrix(transform);
break;
//box,sphere,torus
case BOX:
add_box(tmp,op[i].op.box.d0[0],op[i].op.box.d0[1],op[i].op.box.d0[2],
op[i].op.box.d1[0],op[i].op.box.d1[1],op[i].op.box.d1[2]);
matrix_mult(s->data[s->top],tmp);
draw_polygons(tmp,t,g);
free_matrix(tmp);
//reset
tmp=new_matrix(4,1000);
break;
case SPHERE:
add_sphere(tmp,op[i].op.sphere.d[0],op[i].op.sphere.d[1],
op[i].op.sphere.d[2],op[i].op.sphere.r,0.01);
matrix_mult(s->data[s->top],tmp);
draw_polygons(tmp,t,g);
free_matrix(tmp);
//reset
tmp=new_matrix(4,1000);
break;
case TORUS:
add_torus(tmp,op[i].op.torus.d[0],op[i].op.torus.d[1],op[i].op.torus.d[2],
op[i].op.torus.r0,op[i].op.torus.r1,0.01);
matrix_mult(s->data[s->top],tmp);
draw_polygons(tmp,t,g);
free_matrix(tmp);
//reset
tmp=new_matrix(4,1000);
break;
//line
case LINE:
add_edge(tmp,op[i].op.line.p0[0],op[i].op.line.p0[1],op[i].op.line.p0[2],
op[i].op.line.p1[0],op[i].op.line.p1[1],op[i].op.line.p1[2]);
matrix_mult(s->data[s->top],tmp);
draw_lines(tmp,t,g);
free_matrix(tmp);
tmp=new_matrix(4,1000);//RESET
break;
//EVERYTIN else
case SAVE:
save_extension(t,op[i].op.save.p->name);
//.........这里部分代码省略.........
开发者ID:stuydw,项目名称:mdl,代码行数:101,代码来源:my_main.c
示例19: source
//.........这里部分代码省略.........
op[i].op.sphere.r, step);
//apply the current top origin
matrix_mult (s->data[s->top], tmp);
draw_polygons (tmp, t, g);
tmp->lastcol = 0;
break;
case TORUS:
add_torus (tmp, op[i].op.torus.d[0], //cx
op[i].op.torus.d[1], //cy
op[i].op.torus.d[2], //cz
op[i].op.torus.r0, op[i].op.torus.r1, step);
matrix_mult (s->data[s->top], tmp);
draw_polygons (tmp, t, g);
tmp->lastcol = 0;
break;
case BOX:
add_box (tmp, op[i].op.box.d0[0],
op[i].op.box.d0[1],
op[i].op.box.d0[2],
op[i].op.box.d1[0],
op[i].op.box.d1[1], op[i].op.box.d1[2]);
matrix_mult (s->data[s->top], tmp);
draw_polygons (tmp, t, g);
tmp->lastcol = 0;
break;
case LINE:
add_edge (tmp, op[i].op.line.p0[0],
op[i].op.line.p0[1],
op[i].op.line.p0[1],
op[i].op.line.p1[0],
op[i].op.line.p1[1], op[i].op.line.p1[1]);
draw_lines (tmp, t, g);
tmp->lastcol = 0;
break;
case MOVE:
//get the factors
xval = op[i].op.move.d[0];
yval = op[i].op.move.d[1];
zval = op[i].op.move.d[2];
transform = make_translate (xval, yval, zval);
//multiply by the existing origin
matrix_mult (s->data[s->top], transform);
//put the new matrix on the top
copy_matrix (transform, s->data[s->top]);
free_matrix (transform);
break;
case SCALE:
xval = op[i].op.scale.d[0];
yval = op[i].op.scale.d[1];
zval = op[i].op.scale.d[2];
transform = make_scale (xval, yval, zval);
matrix_mult (s->data[s->top], transform);
//put the new matrix on the top
copy_matrix (transform, s->data[s->top]);
free_matrix (transform);
break;
case ROTATE:
xval = op[i].op.rotate.degrees * (M_PI / 180);
//get the axis
if (op[i].op.rotate.axis == 0)
transform = make_rotX (xval);
else if (op[i].op.rotate.axis == 1)
transform = make_rotY (xval);
else if (op[i].op.rotate.axis == 2)
transform = make_rotZ (xval);
matrix_mult (s->data[s->top], transform);
//put the new matrix on the top
copy_matrix (transform, s->data[s->top]);
free_matrix (transform);
break;
case PUSH:
push (s);
break;
case POP:
pop (s);
break;
case SAVE:
save_extension (t, op[i].op.save.p->name);
break;
case DISPLAY:
display (t);
break;
}
}
free_stack (s);
free_matrix (tmp);
//free_matrix( transform );
}
开发者ID:stuydw,项目名称:mdl-animation,代码行数:101,代码来源:my_main.c
示例20: source
//.........这里部分代码省略.........
case MOVE:
//get the factors
if( op[ i ].op.move.p )
knob_value = lookup_symbol( op[ i ].op.move.p->name )->s.value;
else
knob_value = 1;
xval = op[i].op.move.d[0] * knob_value;
yval = op[i].op.move.d[1] * knob_value;
zval = op[i].op.move.d[2] * knob_value;
transform = make_translate( xval, yval, zval );
//multiply by the existing origin
matrix_mult( s->data[ s->top ], transform );
//put the new matrix on the top
copy_matrix( transform, s->data[ s->top ] );
free_matrix( transform );
break;
case SCALE:
if( op[ i ].op.scale.p )
knob_value = lookup_symbol( op[ i ].op.scale.p->name )->s.value;
else
knob_value = 1;
xval = op[i].op.scale.d[0] * knob_value;
yval = op[i].op.scale.d[1] * knob_value;
zval = op[i].op.scale.d[2] * knob_value;
transform = make_scale( xval, yval, zval );
matrix_mult( s->data[ s->top ], transform );
//put the new matrix on the top
copy_matrix( transform, s->data[ s->top ] );
free_matrix( transform );
break;
case ROTATE:
if( op[ i ].op.rotate.p )
knob_value = lookup_symbol( op[ i ].op.rotate.p->name )->s.value;
else
knob_value = 1;
xval = op[i].op.rotate.degrees * ( M_PI / 180 );
//get the axis
if ( op[i].op.rotate.axis == 0 )
transform = make_rotX( xval * knob_value );
else if ( op[i].op.rotate.axis == 1 )
transform = make_rotY( xval * knob_value );
else if ( op[i].op.rotate.axis == 2 )
transform = make_rotZ( xval * knob_value );
matrix_mult( s->data[ s->top ], transform );
//put the new matrix on the top
copy_matrix( transform, s->data[ s->top ] );
free_matrix( transform );
break;
case PUSH:
push( s );
break;
case POP:
pop( s );
break;
case SAVE:
save_extension( t, op[i].op.save.p->name );
break;
case DISPLAY:
display( t );
break;
case SET:
set_value( lookup_symbol( op[ i ].op.set.p->name ), op[ i ].op.set.val );
break;
case SETKNOBS:
for( k = 0; k < lastsym; k++ )
if( symtab[ k ].type == SYM_VALUE )
symtab[ k ].s.value = op[ i ].op.setknobs.value;
break;
default:
break;
}
}
strcpy(dir,name);
sprintf(p,"%03d", variable);
strcat(dir,p);
strcat(dir, ".png"
|
请发表评论