คู่มือนักดูดาว 6/10 ส่องกล้องฯ II
Tuesday, January 26th, 2010 at
6:41 am
กล้องมองจักรวาล Telescopes & Binoculars : about Binoculars เนื้อหา - การเลือกใช้พิจารณา เลขบอกค่ากำลังขยาย ค่าเส้นผ่านศูนย์กลางเลนส์วัตถุ และค่ารูม่านตา (exit pupil) Or select your binoculars. Note for magnified number, lens diameter, exit pupil. เกร็ด - 1. บังแสงรบกวน 2. ยึดกล้องให้นิ่ง ต้นฉบับ: คู่มือนักดูดาวสมัครเล่น บรรยาย: กิตติ สิงหาปัด ผลิต: wisdommedias ... สารคดี ดูดาว กล้องสองตา กล้องส่องทางไกล ดวงดาว ดาราศาสตร์ star watch astronomy binoculars aviation space physical science ...



US $119.99



you clever devil….
Why give the fuck give the video an English title and then speak some Asian language in the video, that’sjust stupid!
RT my brethren, be strong in the Lord, and in the power of his might. Ephesians 6:10
MADRID – Les résultats des rencontres disputées lors de la 26e journée de la Liga, le championnat d’Espagne de Ligue 1. Samedi: Getafe 3, Majorque 0 Sporting Gijon 0, Athletic Bilbao 0 Séville 1, Deportivo La Corogne 1 Dimanche: Villarreal 2, Xerez 0 Tenerife 4, Espanyol 1 Racing Santander 0, Saragosse 0 Almeria 1, Malaga 0 Barcelone 3, Valence 0 Valladolid 1, Real Madrid 4 Lundi: Atletico Madrid 1, Osasuna 0 Equipes J G N P Bp Bc Pts Real Madrid 26 21 2 3 71 21 65 Barcelone 26 20 5 1 64 16 65 Valence 26 13 8 5 42 29 47 Séville 26 13 5 8 39 29 44 Majorque 26 13 4 9 41 31 43 Deportivo La Corogne 26 12 6 8 30 28 42 Athletic Bilbao 26 12 5 9 34 30 41 Getafe 26 11 3 12 34 32 36 Villarreal 26 10 6 10 38 37 36 Atletico Madrid 26 9 7 10 39 38 34 Almeria 26 8 9 9 30 35 33 Sporting Gijon 26 8 8 10 28 32 32 Osasuna 26 8 7 11 24 27 31 Espanyol 26 7 7 12 19 36 28 Malaga 26 6 9 11 31 34 27 Racing Santander 26 6 9 11 24 37 27 Saragosse 26 6 8 12 30 48 26 Tenerife 26 6 5 15 25 53 23 Valladolid 26 3…
import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.*;
import java.util.Random;
public class circle extends JFrame
{
circle(String s)
{
super(s);
add(new circlePanel());
setSize(700, 700);
setVisible(true);
}
class circlePanel extends JPanel
{
public circlePanel()
{
setBackground (Color.cyan);
setSize(500, 500);
}
public void paintComponent(Graphics g)
{
super.paintComponent(g);
int biggestRadius = -1;
int saveX = -1, saveY = -1, saveRadius = -1;
for(int i = 0; i < 15; i++)
{
g.setColor(Color.black);
int x = new Random().nextInt(this.getWidth());
int y = new Random().nextInt(this.getHeight());
int radius = new Random().nextInt(30);
if(radius > biggestRadius)
{
saveX = x;
saveY = y;
saveRadius = radius;
biggestRadius = radius;
}
else
{
g.drawOval(x, y, radius*2, radius*2);
}
}
g.fillOval(saveX, saveY, saveRadius*2, saveRadius*2);
}
}//end circlePanel
public static void main(String[] args)
{
new circle("circle").setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
}
}//end circle