8311304 : Computer Graphics (คอมพิวเตอร์กราฟิกส์) Department of Informatics, Phuket Rajabhat University. THAILAND
บทที่ 6 พื้นฐานการสร้างภาพคอมพิวเตอร์กราฟิกส์แบบสองมิติด้วยภาษาไพธอน บทที่ 6 พื้นฐานการสร้างภาพคอมพิวเตอร์กราฟิกส์แบบสองมิติด้วยภาษาไพธอน Department of Informatics, Phuket Rajabhat University. THAILAND
Creating Windows
Panel
Drawing Shapes pygame.draw.rect pygame.draw.polygon pygame.draw.circle pygame.draw.ellipse pygame.draw.arc pygame.draw.line
Draw a rectangle shape pygame.draw.rect(Surface, color, Rect, width=0)
Draw a Polygonal Shape pygame.draw.polygon(Surface, color, pointlist, width=0)
Draw a circular shape pygame.draw.circle(Surface, color, pos, radius, width=0)
Draw an elliptical shape pygame.draw.ellipse(Surface, color, Rect, width=0)
Draw an Arc pygame.draw.arc(Surface, color, Rect, start_angle, stop_angle, width=1)
Draw a line pygame.draw.lines(Surface, color, closed, pointlist, width=1)
ตัวอย่างการทำลายกราฟิกส์ด้วยรูปทรงเรขาคณิต
Questions and Answers