Ĺadny brzuch
witam
Czy ktoś wie dlaczego nie moge skompilowac ponizszego kodu?
#include "stdafx.h" using namespace System; #include <GL/glut.h> #include <stdlib.h> GLfloat diffuseMaterial[4] = {0.5, 0.5, 0.5, 1.0}; void init(void) { GLfloat mat_specular[] = {1.0, 1.0, 1.0, 1.0}; GLfloat light_position[] = {1.0, 1.0, 1.0, 0.0}; glClearColor (0.0, 0.0, 0.0, 0.0); glShadeModel (GL_SMOOTH); glEnable(GL_DEPTH_TEST); glMaterialfv(GL_FRONT, GL_DIFFUSE, diffuseMaterial); glMaterialfv(GL_FRONT, GL_SPECULAR, mat_specular); glMaterialf(GL_FRONT, GL_SHININESS, 25.0); glLightfv(GL_LIGHT0, GL_POSITION, light_position); glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); glColorMaterial(GL_FRONT, GL_DIFFUSE); glEnable(GL_COLOR_MATERIAL); } void display(void) { GLfloat x0, y0, z0, x1, y1, z1; GLfloat h; int Puntos, MaxPuntos=3850; glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glColor3f (1.0, 1.0, 1.0); glLoadIdentity (); gluLookAt (0.0, -20.0, 37.0, 0.0, 12.0, 0.0, 0.0, 1.0, 0.0); glColor3f(0.2f, 0.8f, 0.8f); x0=1.0f; y0=1.0f; z0=1.0f; Puntos=0; h=0.02f; while (Puntos<MaxPuntos) { x1=x0+h*(-y0-z0); y1=y0+h*(x0 + 0.2*y0); z1=z0+h*(0.2 + z0*(x0-5.7)); x0=x1; y0=y1; z0=z1; glPushMatrix(); glTranslatef(x0, y0, z0); glutSolidSphere(0.20, 12.0, 12.0); glPopMatrix(); Puntos=Puntos+1; } glFlush (); } void reshape (int w, int h) { glViewport (0, 0, (GLsizei) w, (GLsizei) h); glMatrixMode (GL_PROJECTION); glLoadIdentity (); glFrustum (-1.0, 1.0, -1.0, 1.0, 1.5, 200.0); glMatrixMode (GL_MODELVIEW); } /* ARGSUSED1 */ void keyboard(unsigned char key, int x, int y) { switch (key) { case 27: exit(0); break; } } int main(int argc, char** argv) { glutInit(&argc, argv); glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB); glutInitWindowSize (600, 600); glutInitWindowPosition (0, 0); glutCreateWindow (argv[0]); init (); glutDisplayFunc(display); glutReshapeFunc(reshape); glutKeyboardFunc(keyboard); glutMainLoop(); return 0; }
a dodales do projektu wszystkie pliki naglowkowe? To znaczy chyba tylko ten stdafx.h
I sproboj dodac jeszcze #include<iostream>
A tak wogole to zeby skompilowac to musisz projekt utworzyc, w zwyklym nie mozesz, tylko projekt :)
a dodales do projektu wszystkie pliki naglowkowe? To znaczy chyba tylko ten stdafx.h
I sproboj dodac jeszcze #include<iostream>
A tak wogole to zeby skompilowac to musisz projekt utworzyc, w zwyklym nie mozesz, tylko projekt :)
Chwilowo pomogło dodanie #include<iostream>
Dzieki
Chwilowo pomogło dodanie #include<iostream>
Dzieki
zawsze se dodawaj ta biblioteke. w niej są implementacje wielu instrukcji :) a w programie uzyles chyba break; (chociaz nie wiem czy to jest w iostream czy w sdlib) Cieszę sie że mogłem pomóc :)
mam dalej problem podobnie jak wczesniej.
czekam na pomoc
// roslerek.cpp : main project file. /* dy/dt = 1.0 - t + 4.0*y y(0.0) = 1.0 */ #include "stdafx.h" #include <GL/glut.h> #include <stdlib.h> #include <stdio.h> #include <math.h> #include <iosream> #define MAXPUNTOS 20 double y[MAXPUNTOS+1]; double t[MAXPUNTOS+1]; double f(double t, double y) { return (1.0 - t + 4.0*y); } double exacta(double t) { return (t/4.0 - 3.0/16.0 + (19.0/16.0)*exp(4.0*t)); } void Metodo_Euler(double tinicial, double tfinal, double yinicial, int n) { double h; int i; h=(tfinal-tinicial)/n; t[0]=tinicial; y[0]=yinicial; for (i=0; i<n; i++) { y[i+1]=y[i] + h*f(t[i], y[i]); t[i+1]=t[i] + h; } } void init(void) { Metodo_Euler(0.0, 1.0, 1.0, MAXPUNTOS); } void display(void) { int i; glClear(GL_COLOR_BUFFER_BIT); glMatrixMode( GL_MODELVIEW_MATRIX ); glLoadIdentity(); //grafica de la solucion exacta en color Verde glColor3f(0.0,1.0,0.0); glBegin(GL_LINE_STRIP); for (i=0; i<MAXPUNTOS; i++) glVertex2f(t[i], exacta(t[i])); glEnd(); //grafica de la solucion numerica en color Blanco glColor3f(1.0,1.0,1.0); glBegin(GL_LINE_STRIP); for (i=0; i<MAXPUNTOS; i++) glVertex2f(t[i], y[i]); glEnd(); glFlush (); } void reshape (int w, int h) { if (!h) return; glViewport(0, 0, w, h); glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluOrtho2D(0.0, 1.0, 0.0, 40.0); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } void keyboard(unsigned char key, int x, int y) { switch (key) { case 27: exit(0); break; } } int main(int argc, char** argv) { glutInit(&argc, argv); glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB); glutInitWindowSize (350, 350); glutInitWindowPosition (0, 0); glutCreateWindow ("Metodo de Euler"); init (); glutDisplayFunc(display); glutReshapeFunc(reshape); glutKeyboardFunc(keyboard); glutMainLoop(); return 0; }
nie #include <iosream> tylko iostream
Użytkownik gates22 edytował ten post 26 kwiecień 2008, 18:58
nie #include <iosream> tylko iostream
poprawiłem iosream na iostream takie małe niedopatrzenia ale itak dalej nie działa i nie mam pojecia co dalej z tym robić
poprawiłem iosream na iostream takie małe niedopatrzenia ale itak dalej nie działa i nie mam pojecia co dalej z tym robić
A powiedz w ktorej linijce ci blad wywala i wklej blad (to co jest w bledzie napisane)
błąd wywala mi odrazu na poczatku przy #include<GL/glut>
nie moze znaleść pliku glut.h ale ten plik jest wiec dlatego nie wiem co robic
błąd wywala mi odrazu na poczatku przy #include<GL/glut>
nie moze znaleść pliku glut.h ale ten plik jest wiec dlatego nie wiem co robic
na poczatek w kodzie sproboj bez GL/, smao glut pomiedzy <>
Jak dalej bedzie zle, to zmien <> na " ".
Jesli i to nie podziala, to poszukaj intensywnie tego pliku, bo byc moze go nie ma...
Użytkownik gates22 edytował ten post 26 kwiecień 2008, 19:08
zanotowane.pl doc.pisz.pl pdf.pisz.pl zsf.htw.pl
Czy ktoś wie dlaczego nie moge skompilowac ponizszego kodu?
#include "stdafx.h" using namespace System; #include <GL/glut.h> #include <stdlib.h> GLfloat diffuseMaterial[4] = {0.5, 0.5, 0.5, 1.0}; void init(void) { GLfloat mat_specular[] = {1.0, 1.0, 1.0, 1.0}; GLfloat light_position[] = {1.0, 1.0, 1.0, 0.0}; glClearColor (0.0, 0.0, 0.0, 0.0); glShadeModel (GL_SMOOTH); glEnable(GL_DEPTH_TEST); glMaterialfv(GL_FRONT, GL_DIFFUSE, diffuseMaterial); glMaterialfv(GL_FRONT, GL_SPECULAR, mat_specular); glMaterialf(GL_FRONT, GL_SHININESS, 25.0); glLightfv(GL_LIGHT0, GL_POSITION, light_position); glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); glColorMaterial(GL_FRONT, GL_DIFFUSE); glEnable(GL_COLOR_MATERIAL); } void display(void) { GLfloat x0, y0, z0, x1, y1, z1; GLfloat h; int Puntos, MaxPuntos=3850; glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glColor3f (1.0, 1.0, 1.0); glLoadIdentity (); gluLookAt (0.0, -20.0, 37.0, 0.0, 12.0, 0.0, 0.0, 1.0, 0.0); glColor3f(0.2f, 0.8f, 0.8f); x0=1.0f; y0=1.0f; z0=1.0f; Puntos=0; h=0.02f; while (Puntos<MaxPuntos) { x1=x0+h*(-y0-z0); y1=y0+h*(x0 + 0.2*y0); z1=z0+h*(0.2 + z0*(x0-5.7)); x0=x1; y0=y1; z0=z1; glPushMatrix(); glTranslatef(x0, y0, z0); glutSolidSphere(0.20, 12.0, 12.0); glPopMatrix(); Puntos=Puntos+1; } glFlush (); } void reshape (int w, int h) { glViewport (0, 0, (GLsizei) w, (GLsizei) h); glMatrixMode (GL_PROJECTION); glLoadIdentity (); glFrustum (-1.0, 1.0, -1.0, 1.0, 1.5, 200.0); glMatrixMode (GL_MODELVIEW); } /* ARGSUSED1 */ void keyboard(unsigned char key, int x, int y) { switch (key) { case 27: exit(0); break; } } int main(int argc, char** argv) { glutInit(&argc, argv); glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB); glutInitWindowSize (600, 600); glutInitWindowPosition (0, 0); glutCreateWindow (argv[0]); init (); glutDisplayFunc(display); glutReshapeFunc(reshape); glutKeyboardFunc(keyboard); glutMainLoop(); return 0; }
a dodales do projektu wszystkie pliki naglowkowe? To znaczy chyba tylko ten stdafx.h
I sproboj dodac jeszcze #include<iostream>
A tak wogole to zeby skompilowac to musisz projekt utworzyc, w zwyklym nie mozesz, tylko projekt :)
a dodales do projektu wszystkie pliki naglowkowe? To znaczy chyba tylko ten stdafx.h
I sproboj dodac jeszcze #include<iostream>
A tak wogole to zeby skompilowac to musisz projekt utworzyc, w zwyklym nie mozesz, tylko projekt :)
Chwilowo pomogło dodanie #include<iostream>
Dzieki
Chwilowo pomogło dodanie #include<iostream>
Dzieki
zawsze se dodawaj ta biblioteke. w niej są implementacje wielu instrukcji :) a w programie uzyles chyba break; (chociaz nie wiem czy to jest w iostream czy w sdlib) Cieszę sie że mogłem pomóc :)
mam dalej problem podobnie jak wczesniej.
czekam na pomoc
// roslerek.cpp : main project file. /* dy/dt = 1.0 - t + 4.0*y y(0.0) = 1.0 */ #include "stdafx.h" #include <GL/glut.h> #include <stdlib.h> #include <stdio.h> #include <math.h> #include <iosream> #define MAXPUNTOS 20 double y[MAXPUNTOS+1]; double t[MAXPUNTOS+1]; double f(double t, double y) { return (1.0 - t + 4.0*y); } double exacta(double t) { return (t/4.0 - 3.0/16.0 + (19.0/16.0)*exp(4.0*t)); } void Metodo_Euler(double tinicial, double tfinal, double yinicial, int n) { double h; int i; h=(tfinal-tinicial)/n; t[0]=tinicial; y[0]=yinicial; for (i=0; i<n; i++) { y[i+1]=y[i] + h*f(t[i], y[i]); t[i+1]=t[i] + h; } } void init(void) { Metodo_Euler(0.0, 1.0, 1.0, MAXPUNTOS); } void display(void) { int i; glClear(GL_COLOR_BUFFER_BIT); glMatrixMode( GL_MODELVIEW_MATRIX ); glLoadIdentity(); //grafica de la solucion exacta en color Verde glColor3f(0.0,1.0,0.0); glBegin(GL_LINE_STRIP); for (i=0; i<MAXPUNTOS; i++) glVertex2f(t[i], exacta(t[i])); glEnd(); //grafica de la solucion numerica en color Blanco glColor3f(1.0,1.0,1.0); glBegin(GL_LINE_STRIP); for (i=0; i<MAXPUNTOS; i++) glVertex2f(t[i], y[i]); glEnd(); glFlush (); } void reshape (int w, int h) { if (!h) return; glViewport(0, 0, w, h); glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluOrtho2D(0.0, 1.0, 0.0, 40.0); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } void keyboard(unsigned char key, int x, int y) { switch (key) { case 27: exit(0); break; } } int main(int argc, char** argv) { glutInit(&argc, argv); glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB); glutInitWindowSize (350, 350); glutInitWindowPosition (0, 0); glutCreateWindow ("Metodo de Euler"); init (); glutDisplayFunc(display); glutReshapeFunc(reshape); glutKeyboardFunc(keyboard); glutMainLoop(); return 0; }
nie #include <iosream> tylko iostream
Użytkownik gates22 edytował ten post 26 kwiecień 2008, 18:58
nie #include <iosream> tylko iostream
poprawiłem iosream na iostream takie małe niedopatrzenia ale itak dalej nie działa i nie mam pojecia co dalej z tym robić
poprawiłem iosream na iostream takie małe niedopatrzenia ale itak dalej nie działa i nie mam pojecia co dalej z tym robić
A powiedz w ktorej linijce ci blad wywala i wklej blad (to co jest w bledzie napisane)
błąd wywala mi odrazu na poczatku przy #include<GL/glut>
nie moze znaleść pliku glut.h ale ten plik jest wiec dlatego nie wiem co robic
błąd wywala mi odrazu na poczatku przy #include<GL/glut>
nie moze znaleść pliku glut.h ale ten plik jest wiec dlatego nie wiem co robic
na poczatek w kodzie sproboj bez GL/, smao glut pomiedzy <>
Jak dalej bedzie zle, to zmien <> na " ".
Jesli i to nie podziala, to poszukaj intensywnie tego pliku, bo byc moze go nie ma...
Użytkownik gates22 edytował ten post 26 kwiecień 2008, 19:08