Extend the sutherland-hodgman clipping algorithm to clip
three-dimensional planes against a regular paralleiepiped



Extend the sutherland-hodgman clipping algorithm to clip three-dimensional planes against a regula..

Answer / santhosh

A. Extend the sutherland-hodgman clipping algorithm to clip
three-dimensional planes against a regular paralleiepiped.

Is This Answer Correct ?    6 Yes 8 No

Post New Answer

More C Code Interview Questions

int main() { int x=10; printf("x=%d, count of earlier print=%d", x,printf("x=%d, y=%d",x,--x)); getch(); } ================================================== returns error>> ld returned 1 exit status =================================================== Does it have something to do with printf() inside another printf().

2 Answers  


What is wrong with the following code? int *foo() { int *s = malloc(sizeof(int)100); assert(s != NULL); return s; }

1 Answers  


can u give me the c codings for converting a string into the hexa decimal form......

1 Answers  


C statement to copy a string without using loop and library function..

2 Answers   Persistent, TCS,


main() { int i; printf("%d",scanf("%d",&i)); // value 10 is given as input here }

2 Answers   IBM,






#include<stdio.h> void fun(int); int main() { int a; a=3; fun(a); printf("\n"); return 0; } void fun(int i) { if(n>0) { fun(--n); printf("%d",n); fun(--n); } } the answer is 0 1 2 0..someone explain how the code is executed..?

1 Answers   Wipro,


How we will connect multiple client ? (without using fork,thread)

3 Answers   TelDNA,


Write a program to receive an integer and find its octal equivalent?

7 Answers  


char *someFun1() { char temp[ ] = “string"; return temp; } char *someFun2() { char temp[ ] = {‘s’, ‘t’,’r’,’i’,’n’,’g’}; return temp; } int main() { puts(someFun1()); puts(someFun2()); }

2 Answers  


WAP to display 1,2,3,4,5........N

2 Answers  


write a c-program to find gcd using recursive functions

5 Answers   HTC, Infotech,


#include <stdio.h> int main(void) { int a=4, b=2; a=b<<a+b>>2 ; printf("%d",a); return 0; }

0 Answers   Student,


Categories