Membuat Gambar Hati menggunakan PyOpenGL
Berikut merupakan source code untuk membuat gambar hati menggunakan PyOpenGL from OpenGL.GL import * from OpenGL.GLU import * from OpenGL.GLUT import * import numpy as np def init (): glClearColor( 0.0 , 0.0 , 0.0 , 0.0 ) gluOrtho2D(- 2.0 , 2.0 , - 2.0 , 2.0 ) def plotpoints (): glClear(GL_COLOR_BUFFER_BIT) glColor3f( 0 , 0.5 , 1.0 ) glPointSize( 13 ) glBegin(GL_LINES) glVertex2f(- 300 , 0 ) glVertex2f( 300 , 0 ) glVertex2f( 0 , - 300 ) glVertex2f( 0 , 300 ) glEnd() heart_shape() glFlush() def heart_shape (): glBegin(GL_LINE_STRIP) glColor3f( 1.0 , 0.3 , 0.6 ) x = - 1.140 while (x <= 1.140 ): delta = np.cbrt(x*x) * np.sqrt(x*x) - 4 *x*x + 4 y1 = (np.cbrt(x*x) + np.sqrt(delta)) / 2 y2 = (np.cbrt(x*x) - np.sqrt(delta)) / 2 glVertex2f(x, y1) glVertex2f(x, y2) x += 0.001 glEnd() def...