21 Aug Write A Program That Creates A Scintillation Grid
/**
* @author <Your name here>
* @version <Date>
* CS312 Assignment 3.
* On my honor, <NAME>, this programming assignment is my own work and I have
* not shared my solution with any other student in the class.
*
*
* A program to print out various ScintillationGrids. Part 2 of assignment 3.
* Worth 16 points.
*
* email address:
* UTEID:
* Section 5 digit ID:
* Grader name:
* Number of slip days used on this assignment:
*/
import java.awt.*;
public class ScintillationGrid {
//public static int x, y, Size, NumberOfLines, LineThickness;
public static void main(String[] args) {
int width = 900, height = 650; // Size of panel
DrawingPanel p = new DrawingPanel(width, height);
p.setBackground(Color.CYAN); // Cyan background of panel
Graphics pen = p.getGraphics();
drawGrid(0, 0, 300, 3, 6, pen);
}
public static void drawGrid(int x, int y, int Size, int NumberOfLines, int LineThickness, Graphics g){
int Spaces = (Size-LineThickness*NumberOfLines)/(NumberOfLines + 1) ;
//g.drawRect(x, y, Size, Size); // Draws grid
g.setColor(Color.BLACK); // Sets color of grid to Black
g.fillRect(x, y, Size, Size); // Fills the grid color to Black
//g.drawRect(70, 0, 6, 300);
//g.setColor(Color.LIGHT_GRAY);
//g.fillRect(70, 0, 6, 300);
for(int i=1; i<=NumberOfLines; i++){ // Draws the gray rectangles as vertical lines in the grid
//g.drawRect(x + (Size / (NumberOfLines + 1)) * (i+1) – LineThickness / 2, y, LineThickness, Size);
g.setColor(Color.LIGHT_GRAY);
g.fillRect(x + (Size / (NumberOfLines + 1)) * (i+1) – LineThickness / 2, y, LineThickness, Size);
}
//horizontalLines(x, y, NumberOfLines, LineThickness, Size, g); // Draws the gray rectangles as horizontal lines in the grid
}
public static void horizontalLines(int x, int y, int NumberOfLines, int LineThickness, int Size, Graphics g){
int Spaces = (Size+LineThickness)/(NumberOfLines + 1) ;
for(int i=1; i<=NumberOfLines; i++){ // Draws the gray rectangles as vertical lines in the grid
g.drawRect(x, i*LineThickness+(i-1)*Spaces, LineThickness, Size);
g.setColor(Color.LIGHT_GRAY);
g.fillRect(x, i*LineThickness+(i-1)*Spaces, LineThickness, Size);
}
}
public static void circles(int x, int y, int NumberOfLines, int LineThickness, int Size, Graphics g){
int Spaces = (Size+LineThickness)/(NumberOfLines + 1) ;
for(int d=1; d<=NumberOfLines; d++){
for(int w=0; w<NumberOfLines; w++){
g.drawOval(x, y+Spaces, LineThickness, LineThickness);
g.setColor(Color.WHITE);
g.fillOval(x, y+Spaces, LineThickness, LineThickness);
y+=Spaces;
}
}
Our website has a team of professional writers who can help you write any of your homework. They will write your papers from scratch. We also have a team of editors just to make sure all papers are of HIGH QUALITY & PLAGIARISM FREE. To make an Order you only need to click Ask A Question and we will direct you to our Order Page at WriteDemy. Then fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.
Fill in all the assignment paper details that are required in the order form with the standard information being the page count, deadline, academic level and type of paper. It is advisable to have this information at hand so that you can quickly fill in the necessary information needed in the form for the essay writer to be immediately assigned to your writing project. Make payment for the custom essay order to enable us to assign a suitable writer to your order. Payments are made through Paypal on a secured billing page. Finally, sit back and relax.
About Wridemy
We are a professional paper writing website. If you have searched a question and bumped into our website just know you are in the right place to get help in your coursework. We offer HIGH QUALITY & PLAGIARISM FREE Papers.
How It Works
To make an Order you only need to click on “Order Now” and we will direct you to our Order Page. Fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.
Are there Discounts?
All new clients are eligible for 20% off in their first Order. Our payment method is safe and secure.
