COMPUTER SCIENCE Candidate details By ADARSH KUMAR Sunday, March 20, 2022 0 using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System...
CODE COMPUTER SCIENCE PHP Non Numerically Indexed Array By ADARSH KUMAR Saturday, March 19, 2022 0 Non Numerically Indexed Array < html > < body > < form action = "assoc2.php" method = "p...
C CGA CODE Program to draw a thick circle using moving pen method at a given centre-MASTER GUIDE By ADARSH KUMAR Friday, August 27, 2021 0 Program to draw a thick circle using moving pen method at a given centre #include<graphics.h> void pen(int x,int y,int c) ; void circ...
C CGA CODE Program to implement midpoint circle generation algorithm -MASTER GUIDE By ADARSH KUMAR August 27, 2021 0 Program to implement midpoint circle generation algorithm. #include<graphics.h> void circlepts(int xc,int yc,int x,int y,int clr); v...
C CGA CODE Program to implement DDA Line generation algorithm for all 4 quadrants of a plane (x and y axis should meet at centre(320,240) i.e., Origin O(0,0) of user coordinate system)-MASTER GUIDE By ADARSH KUMAR August 27, 2021 0 Program to implement DDA Line generation algorithm for all 4 quadrants of a plane (x and y axis should meet at centre(320,240) i.e., Origin ...
C CGA CODE Program to implement Cohen-Sutherland Line clipping algorithm. -MASTER GUIDE By ADARSH KUMAR August 27, 2021 0 Program to implement Cohen-Sutherland Line clipping algorithm. #include<stdio.h> #include<conio.h> #include<graphics.h> ...
C CGA CODE Program to transform object ( Tringle or rectangle or Polygon) from window to view port. - MASTER GUIDE By ADARSH KUMAR Wednesday, August 25, 2021 0 Program to transform object ( Tringle or rectangle or Polygon)from window to view port. #include <stdio.h> #include<graphics.h>...
C CGA CODE Program to draw a polygon by accepting vertex coordinates and perform shear and reflections about x and y axes based on user’s choice. -MASTER GUIDE By ADARSH KUMAR August 25, 2021 0 Program to draw a polygon by accepting vertex coordinates and perform shear and reflections about x and y axes based on user’s choice. #in...
C CGA CODE Program to draw a polygon by accepting vertex coordinates and perform basic transformations (translation, scaling, rotation) about a given point based on user’s choice. - MASTER GUIDE By ADARSH KUMAR August 25, 2021 0 Program to draw a polygon by accepting vertex coordinates and perform basic transformations (translation, scaling, rotation) about a given p...
CGA COMPUTER SCIENCE Bresenham’s Line Algorithm -MASTER GUIDE By ADARSH KUMAR Tuesday, August 24, 2021 0 Bresenham’s Line Algorithm This is an accurate and efficient raster line-generating algorithm. This algorithm scan converts lines using on...