Google Classroom
GeoGebraGeoGebra Classroom

No 30:POO Python - Geogebra5-Intersección de superficies

Programación Orientada a Objetos con Python y Geogebra 5.0 NOTA 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 Interseccion: ....def __init__(self,inicioz,finz): ........self.inicioz=inicioz ........self.finz=finz ....def dibujar(self): ........command("Surface["+"sin(u)"+","+ "cos(u)"+"," + "v"+","+"u,0,6.28,v,"+str(self.inicioz)+","+str(self.finz)+" ]") ....def f(x,y): ........return 2-x ....$f =Function(f) interseccion1=Interseccion(0,4) interseccion1.dibujar()