- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试找到使用 de casteljau 算法生成贝塞尔曲线的方法,以完成我在这里的一项任务。我能够使用普通方法生成贝塞尔曲线,但无法使用上述算法开始生成。如果有人可以建议我正确的方向或分享您拥有的任何代码,那将会很有帮助。我不只是按原样询问。我为此做了很多工作,并自己编写了以下代码来生成曲线。我找到了一个完全符合我需要的网络小程序。 (http://www2.mat.dtu.dk/people/J.Gravesen/cagd/decast.html)。建议我如何实现这一目标
#include <iostream>
using std::cerr;
using std::endl;
#include <stdlib.h>
//using std::exit;
#include <GL/glut.h> // GLUT stuff, includes OpenGL headers as well
#include <windows.h>
#include <math.h>
#include <gl/Gl.h>
#include <gl/Glu.h>
int SCREEN_HEIGHT = 480;
// Keep track of times clicked, on 3 clicks draw.
int NUMPOINTS = 0;
// Point class to keep it a little cleaner.
class Point {
public:
float x, y, z;
void setxy(float x2, float y2) { x = x2; y = y2; }
const Point & operator=(const Point &rPoint) {
x = rPoint.x;
y = rPoint.y;
z = rPoint.z;
return *this;
}
};
Point abc[4];
void myInit() {
glClearColor(0.0,0.0,0.0,0.0);
glColor3f(1.0,0.0,0.0);
glPointSize(4.0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluOrtho2D(0.0,640.0,0.0,480.0);
}
void drawDot(int x, int y) {
glBegin(GL_POINTS);
glVertex2i(x,y);
glEnd();
glFlush();
}
void drawLine(Point p1, Point p2) {
glBegin(GL_LINES);
glVertex3f(p1.x, p1.y, p1.z);
glVertex3f(p2.x, p2.y, p2.z);
glEnd();
glFlush();
}
// Calculate the next bezier point.
Point drawBezier(Point A, Point B, Point C, Point D, double t) {
Point P;
P.x = pow((1 - t), 3) * A.x + 3 * t * pow((1 -t), 2) * B.x + 3 * (1-t) * pow(t, 2)* C.x + pow (t, 3)* D.x;
P.y = pow((1 - t), 3) * A.y + 3 * t * pow((1 -t), 2) * B.y + 3 * (1-t) * pow(t, 2)* C.y + pow (t, 3)* D.y;
P.z = pow((1 - t), 3) * A.z + 3 * t * pow((1 -t), 2) * B.z + 3 * (1-t) * pow(t, 2)* C.z + pow (t, 3)* D.z;
return P;
}
void myMouse(int button, int state, int x, int y) {
// If left button was clicked
if(button == GLUT_LEFT_BUTTON && state == GLUT_DOWN) {
// Store where the user clicked, note Y is backwards.
abc[NUMPOINTS].setxy((float)x,(float)(SCREEN_HEIGHT - y));
NUMPOINTS++;
// Draw the red dot.
drawDot(x, SCREEN_HEIGHT - y);
// If 3 points are drawn do the curve.
if(NUMPOINTS == 4) {
glColor3f(1.0,1.0,1.0);
// Draw two legs of the triangle
drawLine(abc[0], abc[1]);
drawLine(abc[1], abc[2]);
drawLine(abc[2], abc[3]);
//drawLine(abc[3], abc[4]);
Point POld = abc[0];
/* Draw each segment of the curve. Make t increment in
smaller amounts for a more detailed curve. */
for(double t = 0.0;t <= 1.0; t += 0.1) {
Point P = drawBezier(abc[0], abc[1], abc[2], abc[3], t);
drawLine(POld, P);
POld = P;
}
glColor3f(1.0,0.0,0.0);
NUMPOINTS = 0;
}
}
}
void myDisplay() {
glClear(GL_COLOR_BUFFER_BIT);
glFlush();
}
int main(int argc, char *argv[]) {
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_SINGLE|GLUT_RGB);
glutInitWindowSize(640,480);
glutInitWindowPosition(100,150);
glutCreateWindow("Bezier Curve");
glutMouseFunc(myMouse);
glutDisplayFunc(myDisplay);
myInit();
glutMainLoop();
return 0;
}
最佳答案
对我有用,有什么问题?
我不会将此作为答案发布,但我不能在评论中发布图片
关于c++ - 在 C++、OpenGL 中使用 De Casteljau 算法绘制贝塞尔曲线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7884433/
我注意到我可以在某些地方*这些语言之间进行选择: de - 德语 - Deutsch de-DE - Deutsch(Deutschland) - 德语(德国) *Android 初始设备设置,语言设
我运行以下代码并得到评论中显示的结果。我知道 == 和 .equals() 之间的区别。我不明白的是为什么我在第二行的代码与第三行的代码有不同的结果。 String de = "de"; //
在我的 WPF 应用程序中,CurrentUICulture 未被 Windows 正确接管或错误地存储在 Windows 中。 Windows 中的区域和语言设置在我找到“Deutsch (Schw
我有一个项目,我只能在 下添加代码-tag 但重要的是语言在 SEO 和其他一些东西的标题中。 所以我的问题是: 什么是优先级/排名 对比 最佳答案 根据 Google Multi-region
通过 Kendo.culture('de-DE') 更改应用程序中的文化,默认设置为 en-US。但是,当文化为“de-DE”时,进行简单的文化更改会弄乱值,它将网格值乘以 100。 有谁知道值乘以
const EUR = new Intl.NumberFormat("de-DE", { style: "currency", currency: "EUR" }) const a = EUR.for
我在我的 asp.net 应用程序中使用德语 UI Culture。我正在根据下拉列表中选择的语言更改我的应用程序的 UI 区域性,在下拉列表中选择的索引更改我正在使用此代码 Thread.Curre
我正在通过建立一份CosmWasm合同来教自己Rust。。游戏的定义是。(Slot是另一个结构,而GameStatus是一个枚举,前缀都是它们自己的#[派生...宏。)。我定义了一个游戏地图,如下所示
使用 el = de.query(By.css('h2')).nativeElement; 有什么好处吗?通过 el = de.nativeElement.querySelector('h2'); 的
在 pear.phpunit.de/PHPUnit 中安装 PHPUnit 未知 channel pear.phpunit.de 时出错 无效的包名称/包文件 "Debian-4 操作系统上的 pea
'[abc]%' 搜索以 a、b 和 c 开头的单词,但我想搜索两个不同的两个字符 SB 和 TB。 以下代码返回 nth。 SELECT v.sku FROM sylius_product_vari
Caused by: java.lang.IllegalArgumentException: El mapeo de filtro especifica un nombre desconocido d
本文整理了Java中de.schildbach.pte.ZvvProvider类的一些代码示例,展示了ZvvProvider类的具体用法。这些代码示例主要来源于Github/Stackoverflow
我有一个正则表达式 [a-zA-Z][a-z] 我必须更改此正则表达式,以便正则表达式不接受以“de”、“DE”、“dE”和“De”开头的字符串。我无法使用后视或前视,因为我的系统不支持是吗? 最佳答
我有一个正则表达式 [a-zA-Z][a-z] 我必须更改此正则表达式,以便正则表达式不接受以“de”、“DE”、“dE”和“De”开头的字符串。我无法使用后视或前视,因为我的系统不支持是吗? 最佳答
我有两个这样的字符串 string s = "abcdef"; string t = "def"; 我想从 s 中删除 t。我可以这样做吗? s = s - t? 编辑 我将有两个字符串 s 和 t,
我正在制作一个解密维吉尼亚密码的程序。用户只能给出字母键。 for (int i = 0, counter = strlen(text); i < counter; i++) {
希望获得 Java 遵循的一些幕后内存引用和规则。 这是一段代码。基本上,此类用于实例化一些其他对象 (MyOtherObject),然后将此对象的 doClose() 方法的引用发送到 Vector
我有一个包含 的对象 公共(public)类 PositionsChannelApplicationGroups { public PositionsChannelApplicationGroups(
我整个星期都在用一个具有挑战性的设计来解决它,我正在完成我的最后一件抵抗运动,今天还剩一个小时, 我这里有一个菱形/蜂窝状的用户界面 http://jsfiddle.net/z42wg/25/ .di
我是一名优秀的程序员,十分优秀!