No 22:POO Python - Geogebra5-Helice circular

Programación Orientada a Objetos con Python y Geogebra 5.0 NOTA 1 Este Applet contiene código Python, por tanto para que funcione bien, debe descargarse y ejecutarse localmente en el PC con Geogebra 5. Ver en pantalla gráfica 3D Código del Applet class Helice: ....def __init__(self,inicio,fin): ........self.inicio=inicio ........self.fin=fin ....def dibujar(self): ........command("Curve[cos(t),sin(t),t,t,"+str(self.inicio)+","+str(self.fin)+" ]") helice1=Helice(0,3.14) helice1.dibujar()