有一个文本文件存储了一个logo的坐标信息,存储格式如下 1 2 2,3 4,3 2 3 1,2 2,3 1,2 表示含义如下 第一个图形有两个坐标 分别是2,3 和4,3 第二个图形有三个坐标分别是1,2 2,3 1,2 在C++ 中编写一个完整的可运行的程序对文本文件坐标进行读取 并且利用数值微分算法对读取坐标进行循环绘制最后利用easyx可视化界面将绘制图像显示出来
时间: 2023-11-09 15:04:14 浏览: 169
以下是一个可行的解决方案:
```c++
#include <iostream>
#include <fstream>
#include <vector>
#include <cmath>
#include <graphics.h>
using namespace std;
// 坐标点结构体
struct Point {
int x;
int y;
};
// 读取文本文件中的坐标信息
void readCoordinates(string filename, vector<vector<Point>>& coordinates) {
ifstream in(filename);
if (!in) {
cerr << "Failed to open file: " << filename << endl;
exit(1);
}
string line;
while (getline(in, line)) {
vector<Point> points;
int startPos = 0;
for (int i = 0; i < line.size(); i++) {
if (line[i] == ',' || line[i] == ' ') {
int endPos = i - 1;
int num = stoi(line.substr(startPos, endPos - startPos + 1));
if (i < line.size() - 1 && line[i + 1] == ' ') {
i++;
}
startPos = i + 1;
int j = i + 1;
while (j < line.size() && line[j] != ',' && line[j] != ' ') {
j++;
}
int num2 = stoi(line.substr(i + 1, j - i - 1));
i = j - 1;
Point p = { num, num2 };
points.push_back(p);
}
}
coordinates.push_back(points);
}
}
// 绘制坐标点
void drawPoints(const vector<vector<Point>>& coordinates) {
for (auto points : coordinates) {
for (int i = 0; i < points.size(); i++) {
if (i < points.size() - 1) {
line(points[i].x, points[i].y, points[i + 1].x, points[i + 1].y);
}
else {
line(points[i].x, points[i].y, points[0].x, points[0].y);
}
}
}
}
// 计算两点之间距离
double distance(Point p1, Point p2) {
return sqrt(pow(p1.x - p2.x, 2) + pow(p1.y - p2.y, 2));
}
// 数值微分算法绘制曲线
void drawCurve(Point p1, Point p2, Point p3) {
double d1 = distance(p1, p2);
double d2 = distance(p2, p3);
int n = max(static_cast<int>(d1), static_cast<int>(d2));
for (int i = 0; i < n; i++) {
double t = static_cast<double>(i) / n;
double x = pow(1 - t, 2) * p1.x + 2 * t * (1 - t) * p2.x + pow(t, 2) * p3.x;
double y = pow(1 - t, 2) * p1.y + 2 * t * (1 - t) * p2.y + pow(t, 2) * p3.y;
putpixel(static_cast<int>(x), static_cast<int>(y), WHITE);
}
}
// 绘制坐标曲线
void drawCurves(const vector<vector<Point>>& coordinates) {
for (auto points : coordinates) {
for (int i = 0; i < points.size(); i++) {
if (i < points.size() - 2) {
drawCurve(points[i], points[i + 1], points[i + 2]);
}
else if (i == points.size() - 2) {
line(points[i].x, points[i].y, points[i + 1].x, points[i + 1].y);
}
else {
line(points[i].x, points[i].y, points[0].x, points[0].y);
}
}
}
}
int main() {
initgraph(640, 480); // 初始化easyx窗口
setbkcolor(BLACK); // 设置背景色为黑色
cleardevice(); // 清空窗口
vector<vector<Point>> coordinates;
readCoordinates("coordinates.txt", coordinates); // 读取坐标信息
drawPoints(coordinates); // 绘制坐标点
drawCurves(coordinates); // 绘制坐标曲线
system("pause"); // 暂停程序,等待用户关闭窗口
closegraph(); // 关闭easyx窗口
return 0;
}
```
这个程序中,`readCoordinates` 函数用于读取文本文件中的坐标信息,并将其存储为一个二维向量;`drawPoints` 函数用于绘制所有的坐标点;`drawCurve` 函数用于利用数值微分算法绘制三个坐标点之间的曲线;`drawCurves` 函数则用于绘制所有的坐标曲线。在 `main` 函数中,我们首先初始化easyx窗口,绘制坐标点和坐标曲线,然后等待用户关闭窗口,最后关闭easyx窗口。
需要注意的是,由于 `putpixel` 函数只能绘制整数坐标的点,所以在 `drawCurve` 函数中,我们需要将浮点数坐标转换为整数坐标。此外,由于easyx默认背景色为白色,所以我们需要将背景色手动设置为黑色,以保证绘制的图像可以清晰显示。
阅读全文