C++ 使用C++;?

C++ 使用C++;?,c++,visual-c++,opengl,opengl-3,C++,Visual C++,Opengl,Opengl 3,我尝试3D,但我是一个初学者,所以我尝试先使用2D,z=0。我使用std::vector在数组points[]中有一个随机值的点数组。我有函数Distance(…)和CaculateF(…)来计算点[]的新值并存储在数组pnew[]中。我需要绘制点[]并将它们移动到pnew[]的值,但我只知道首先在数组点[]中绘制随机点,我无法将它们精确移动到pnew[]中的值。有人能帮我吗 #include<stdlib.h> #include<glut.h> #include<

我尝试3D,但我是一个初学者,所以我尝试先使用2D,z=0。我使用std::vector在数组points[]中有一个随机值的点数组。我有函数Distance(…)和CaculateF(…)来计算点[]的新值并存储在数组pnew[]中。我需要绘制点[]并将它们移动到pnew[]的值,但我只知道首先在数组点[]中绘制随机点,我无法将它们精确移动到pnew[]中的值。有人能帮我吗

#include<stdlib.h>
#include<glut.h>
#include<iostream>
#include<conio.h>
#include<math.h>
#include<omp.h>
#include<time.h>
#include<Windows.h>
#include<vector>

using namespace std;

struct Point
{
    float x, y , z;
    float vx, vy, vz; 
    unsigned long m;
    unsigned char r, g, b, a;
};
vector< Point > points, pnew;

void animation_points( int value )
{
    // move all points left each frame
    for( size_t i = 0; i < points.size(); ++i )
    {
        points[i].x -= 1;
        // wrap point around if it's moved off
        // the edge of our 100x100 area
        if( points[i].x < -50 )
        {
            points[i].x = 100 + points[i].x;
        }
    }

    glutPostRedisplay();
    glutTimerFunc(30, animation_points, 1);
}

void display(void)
{
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();
    glOrtho(-50, 50, -50, 50, -1, 1);

    glMatrixMode(GL_MODELVIEW);
    glLoadIdentity();

    // draw
    glColor3ub( 255, 255, 255 );
    glEnableClientState( GL_VERTEX_ARRAY );
    glEnableClientState( GL_COLOR_ARRAY );
    glVertexPointer( 2, GL_FLOAT, sizeof(Point), &points[0].x );
    glColorPointer( 4, GL_UNSIGNED_BYTE, sizeof(Point), &points[0].r );
    glPointSize( 3.0 );
    glDrawArrays( GL_POINTS, 0, points.size() );
    glDisableClientState( GL_VERTEX_ARRAY );
    glDisableClientState( GL_COLOR_ARRAY );

    glFlush();
    glutSwapBuffers();
}

void reshape(int w, int h)
{
    glViewport(0, 0, w, h);
}

//Distance between i and j
float Distance(float x1,float y1, float z1, float x2, float y2, float z2)
{
    return (sqrt(pow(x1-x2,2) + pow(y1-y2,2) + pow(z1-z2,2)));
}

//Value of F on Ox, Oy, Oz
Point CalculateF(double d, Point a, Point b, int dt)
{
    Point F;
    float vnewx, vnewy, vnewz, xnew , ynew, znew;
    float G = 6.6742*pow(10,-11);
    float Fx = (G*a.m*b.m/pow(d,2)*(a.x-b.x)/d);
    float Fy = (G*a.m*b.m/pow(d,2)*(a.y-b.y)/d);
    float Fz = (G*a.m*b.m/pow(d,2)*(a.z-b.z)/d);

    vnewx = a.vx + Fx*dt/a.m;
    vnewy = a.vy + Fy*dt/a.m;
    vnewz = a.vz + Fz*dt/a.m;

    xnew = a.x + a.x*dt;
    ynew = a.y + a.y*dt;
    znew = a.z + a.z*dt;

    F.x = xnew;
    F.y = ynew;
    F.z = znew;
    F.vx = vnewx;
    F.vy = vnewy;
    F.vz = vnewz;
    F.m = a.m;
    return F;
}

int main(int argc, char **argv)
{
    // begin
    glutInit(&argc, argv);
    glutInitDisplayMode(GLUT_RGBA | GLUT_DEPTH | GLUT_DOUBLE);

    glutInitWindowSize(640,480);
    glutCreateWindow("N - body");

    glutDisplayFunc(display);
    glutReshapeFunc(reshape);
    // animation points
    //glutTimerFunc(30, animation_points, 1);

    ////
    int n, t;
    cout<<"\n Number of body: ";
    cin>>n;
// move after time t
    cout<<"\n\n Time: ";
    cin>>t;
    t *= 3600;

    // random points
    for( int i = 0; i < n; ++i )
    {
    Point pt;
    pt.x = -50 + (rand() % 100);
    pt.y = -50 + (rand() % 100);
    pt.z = 0;
    pt.r = rand() % 255;
    pt.g = rand() % 255;
    pt.b = rand() % 255;
    pt.a = 255;
    points.push_back(pt);
    }    

glutMainLoop();

float d;

//#pragma omp parallel default(shared) private(i,j)
for (int i = 0 ; i < n ; i++)
{
    //#pragma omp for schedule(static)
    for (int j = 0 ; j < n ; j++)
    {
        d = Distance(points[i].x, points[i].y,points[i].z, points[j].x, points[j].y, points[j].z);
        if (d!=0)
            points[i] = CalculateF(d,points[i], points[j], t); 
    }
    pnew.push_back(points[i]);
}

return 0;
}
#包括
#包括
#包括
#包括
#包括
#包括
#包括
#包括
#包括
使用名称空间std;
结构点
{
浮动x,y,z;
浮动vx、vy、vz;
无符号长m;
无符号字符r,g,b,a;
};
向量<点>点,pnew;
无效动画_点(int值)
{
//每帧向左移动所有点
对于(size_t i=0;i
您需要在阵列中存储点的初始位置和目标位置,然后在渲染代码中在它们之间进行插值。为此,您需要确定经过了多少时间,从时间开始计算0.0到1.0范围内的
double lambda
,然后在
p\u start+lambda*(p\u target-p\u start)

您的问题陈述不清楚的位置绘制点。因此,您需要的是插值点的位置,以便
点[i]
移动到
pnew[i]
的位置?在预定的时间间隔内?以恒定速度?是的,速度不是主要问题!我只需要在输入t值后从点[I]移动到pnew[I]的位置绘制随机动画点!请帮帮我,太多了。。。