- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
这是一个绘制星星的类,它是 Bjarne Stroustrup 的 C++ 编程:原理与实践 第 13 章练习 19 的一部分。
Class
Star
uses penta-, hexa-, hepta- and octa-gram as basis together with a property (rotational symmetry) that stars with multiple vertices (10, 12, 14, 18, etc) have, to draw n-grams1:
Chapter13Exercise19.cpp
#include "GUI.h"
#include "Simple_window.h"
#include <iostream>
#include "Chapter13Exercise19.h"
int main(){
// window parameters
int winWidth = 800;
int winHeight = 600;
Point centerPoint((x_max() - winWidth) / 2, (y_max() - winHeight) / 2);
Simple_window* siw = new Simple_window(centerPoint, winWidth,
winHeight, "Chapter 13 Exercise 19");
try{
Point center(siw->x_max()/2, siw->y_max()/2);
int radius = 150;
// Currenly: sides > 5, sides =! 13, 17, 19 and multiples
int sides = 16;
Graph_lib::Star st(center, radius, sides);
siw->attach(st);
siw->wait_for_button();
}catch(exception& e){
cerr << e.what() << endl;
getchar();
}catch(const std::invalid_argument& e){
cerr << e.what() << endl;
getchar();
}catch(...){
cerr <<"Defaul exception!"<< endl;
getchar();
}
}
Chapter13Exercise19.h
#ifndef _Chapter13Exercise19_H_
#define _Chapter13Exercise19_H_
#define PI 3.14159265359
namespace Graph_lib{
class Star: public Lines{
public:
Star(Point c, int r, int n);
private:
int vertexNumber;
Point center;
int radius;
vector<Point>starCoordinates;
// parameters kept as function recursive
void rotateCoordinate(Point& axisOfRotation, Point& initial,
double angRads, int numberOfRotations);
void generatePoly();
void makeStar();
};
#include "Chapter13Exercise19Def.cpp"
} // end of namespace Graph_lib
#endif
Chapter13Exercise19Def.cpp
// Class Members implementation
Star::Star(Point c, int r, int n)
: vertexNumber(n), center(c), radius(r)
{
if(n < 5) throw std::invalid_argument("Not enough verteces!");
generatePoly();
makeStar();
}
void Star::rotateCoordinate(Point& axisOfRotation, Point& initial,
double angRads, int numberOfRotations){
if(numberOfRotations <= 0) return;
else{
double x = cos(angRads) * (initial.x - axisOfRotation.x)
- sin(angRads) * (initial.y - axisOfRotation.y) + axisOfRotation.x;
double y = sin(angRads) * (initial.x - axisOfRotation.x)
+ cos(angRads) * (initial.y - axisOfRotation.y) + axisOfRotation.y;
starCoordinates.push_back(Point(x, y));
rotateCoordinate(axisOfRotation, Point(x,y), angRads, --numberOfRotations);
}
}
void Star::generatePoly(){
double angRads = (PI / 180.) * (360. / vertexNumber);
Point initial(center.x, center.y - radius);
rotateCoordinate(center, initial, angRads, vertexNumber);
}
void Star::makeStar(){
// every if statement covers Star with n and multiples of n vertexes
// the inner for loops execute one iteration for the fundamental stars
// and n iterations for the multiples (rotational symmetry)
if (vertexNumber % 5 == 0){
for (size_t it = 0; it < starCoordinates.size() / 5; ++it){
Lines::add(starCoordinates[it+3], starCoordinates[it]);
Lines::add(starCoordinates[it], starCoordinates[it+2]);
Lines::add(starCoordinates[it+2], starCoordinates[it+4]);
Lines::add(starCoordinates[it+4], starCoordinates[it+1]);
Lines::add(starCoordinates[it+1], starCoordinates[it+3]);
}
}else if (vertexNumber % 3 == 0){
for (size_t it = 0; it < starCoordinates.size() / 3; ++it){
Lines::add(starCoordinates[it], starCoordinates[it+2]);
Lines::add(starCoordinates[it+2], starCoordinates[it+4]);
Lines::add(starCoordinates[it+4], starCoordinates[it]);
}
}else if (vertexNumber % 7 == 0){
for (size_t it = 0; it < starCoordinates.size() / 7; ++it){
Lines::add(starCoordinates[it], starCoordinates[it+3]);
Lines::add(starCoordinates[it+3], starCoordinates[it+6]);
Lines::add(starCoordinates[it+6], starCoordinates[it+2]);
Lines::add(starCoordinates[it+2], starCoordinates[it+5]);
Lines::add(starCoordinates[it+5], starCoordinates[it+1]);
Lines::add(starCoordinates[it+1], starCoordinates[it+4]);
Lines::add(starCoordinates[it+4], starCoordinates[it]);
}
}else if (vertexNumber % 8 == 0){
for (size_t it = 0; it < starCoordinates.size() / 8; ++it){
Lines::add(starCoordinates[it], starCoordinates[it+5]);
Lines::add(starCoordinates[it+5], starCoordinates[it+2]);
Lines::add(starCoordinates[it+2], starCoordinates[it+7]);
Lines::add(starCoordinates[it+7], starCoordinates[it+4]);
Lines::add(starCoordinates[it+4], starCoordinates[it+1]);
Lines::add(starCoordinates[it+1], starCoordinates[it+6]);
Lines::add(starCoordinates[it+6], starCoordinates[it+3]);
Lines::add(starCoordinates[it+3], starCoordinates[it]);
}
} else throw std::invalid_argument("Star vertexes'number not supported!");
}
虽然所有基本的多边形(5、6、7、8 个顶点)看起来都像它们应该的那样,但在多边形的顶点为:10、12、14 等的情况下,我得到了这些部分完成的图。
我知道问题来自 Chapter13Exercise19Def.cpp
中的函数 makeStar()
,但我无法弄清楚问题出在哪里。
为什么画出来的是半画,函数makeStar()
的实现有什么问题?
是否有其他算法可以完成类似的工作?
1。目前是 5、6、7 和 8 的倍数。
最佳答案
我真的不能玩你的代码,因为它依赖于你正在使用的可视化库,但我知道问题出在哪里,而且我非常有信心我知道解决方案。
rotateCoordinate
递归函数生成点 vector ,沿多边形的边界圆均匀分布,按顺时针方向排列。
然后,当您构建定义(绘制...)多边形的线时,您使用的是点,但不是用于更正索引。例如,假设您有一个多边形 {16/2}(2 个六角星),您有 0-15 个索引点,但是生成线条的 for
循环最多会达到索引8(it = 1
,索引 [it + 7]
),这显然是错误的。
你应该做的是用你的多边形中多边形的数量乘以你的常量数(你添加到 it
的数),所以在 {16/2} 的情况下2.
试试这个代码:
void Star::makeStar(){
// every if statement covers Star with n and multiples of n vertexes
// the inner for loops execute one iteration for the fundamental stars
// and n iterations for the multiples (rotational symmetry)
if (vertexNumber % 5 == 0){
for (size_t it = 0, polygons = starCoordinates.size() / 5; it < polygons; ++it){
Lines::add(starCoordinates[it + polygons * 3], starCoordinates[it]);
Lines::add(starCoordinates[it], starCoordinates[it + polygons * 2]);
Lines::add(starCoordinates[it + polygons * 2], starCoordinates[it + polygons * 4]);
Lines::add(starCoordinates[it + polygons * 4], starCoordinates[it + polygons * 1]);
Lines::add(starCoordinates[it + polygons * 1], starCoordinates[it + polygons * 3]);
}
}else if (vertexNumber % 6 == 0){ // for polygons multiples of 6
size_t polygons = starCoordinates.size() / 6;
for (size_t it = 0, ; it < starCoordinates() / 3; ++it){
// generated by two triangles
Lines::add(starCoordinates[it], starCoordinates[it + polygons * 2]);
Lines::add(starCoordinates[it + polygons * 2], starCoordinates[it + polygons * 4]);
Lines::add(starCoordinates[it + polygons * 4], starCoordinates[it]);
}
}else if (vertexNumber % 7 == 0){
for (size_t it = 0, polygons = starCoordinates.size() / 7; it < polygons; ++it){
Lines::add(starCoordinates[it], starCoordinates[it + polygons * 3]);
Lines::add(starCoordinates[it + polygons * 3], starCoordinates[it + polygons * 6]);
Lines::add(starCoordinates[it + polygons * 6], starCoordinates[it + polygons * 2]);
Lines::add(starCoordinates[it + polygons * 2], starCoordinates[it + polygons * 5]);
Lines::add(starCoordinates[it + polygons * 5], starCoordinates[it + polygons * 1]);
Lines::add(starCoordinates[it + polygons * 1], starCoordinates[it + polygons * 4]);
Lines::add(starCoordinates[it + polygons * 4], starCoordinates[it]);
}
}else if (vertexNumber % 8 == 0){
for (size_t it = 0, polygons = starCoordinates.size() / 8; it < polygons; ++it){
Lines::add(starCoordinates[it], starCoordinates[it + polygons * 5]);
Lines::add(starCoordinates[it + polygons * 5], starCoordinates[it + polygons * 2]);
Lines::add(starCoordinates[it + polygons * 2], starCoordinates[it + polygons * 7]);
Lines::add(starCoordinates[it + polygons * 7], starCoordinates[it + polygons * 4]);
Lines::add(starCoordinates[it + polygons * 4], starCoordinates[it + polygons * 1]);
Lines::add(starCoordinates[it + polygons * 1], starCoordinates[it + polygons * 6]);
Lines::add(starCoordinates[it + polygons * 6], starCoordinates[it + polygons * 3]);
Lines::add(starCoordinates[it + polygons * 3], starCoordinates[it]);
}
} else throw std::invalid_argument("Star vertexes'number not supported!");
}
关于c++ - 无法绘制多边形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32769330/
我学习 SDL 二维编程已有一段时间了,现在我想创建一个结合使用 SDL 和 OpenGL 的程序。我是这样设置的: SDL_Init(SDL_INIT_VIDEO); window = SDL_Cr
尝试查找可在地块中使用的不同类型项目的列表 来自不同样本的投影类型: projection = list(type = "equirectangular") projection = list(typ
我正在尝试使用 Java Graphics API 绘制 GIF,但无法使用下面的代码成功绘制 GIF。仅绘制 GIF 的第一张图像或缩略图,但不播放。 public void paintCompon
我目前正在使用 JFrame 并尝试绘制一个矩形,但我不知道如何执行代码 paint(Graphics g),如何获取 Graphics 对象? package com.raggaer.frame;
这个领域的新手,希望得到一些帮助。 我有一个"Missile.java" 类,我在那里画东西。我想绘制一个 ImageView,我正在使用以下代码: ImageView v = (ImageView)
下面列出了圆形的例子 这是我的 JavaScript 代码。 最佳答案 假设您的 randomColor 是正确的,您只需要: 从 canvas.onclick 中移除 context.clearR
我在绘制和缩放 ImageView 时遇到问题。请帮帮我.. 当我画一些东西然后拖动或缩放图像时 - 绘图保留在原处,如您在屏幕截图中所见。而且我只需要简单地在图片上绘图,并且可以缩放和拖动这张图片。
我们可以在形式之外绘制图像和文本...我的意思是在字面上... 我知道问这个问题很愚蠢但是我们能不能... 最佳答案 您可以通过创建表单并将其 TransparentColor 属性设置为背景色来“作
我在绘制/布局期间收到 3 个对象分配警告 super.onDraw(canvas); canvas.drawColor(Color.WHITE); Paint textPaint = new Pai
我有一个示例时间序列数据框: df = pd.DataFrame({'year':'1990','1991','1992','1993','1994','1995','1996',
我试图想出一种简洁的方法来绘制 R 数据框中所有列的 GridView 。问题是我的数据框中既有离散值又有数值。为简单起见,我们可以使用 R 提供的名为 iris 的示例数据集。我会使用 par(mf
我有一个由 10 列和 50 行组成的 data.frame。我使用 apply 函数逐列计算密度函数。现在我想绘制我一次计算的密度。 换句话说,而不是绘图... plot(den[[1]]) plo
我想知道我们如何才能在第一个和第二个组件之外绘制个人,如下所示: 最佳答案 这可能有效: pc.cr <- princomp(USArrests, cor = TRUE) pairs(pc.cr$lo
我是Pandas和matplotlib的新手,想绘制此DataFrame season won team matches pct_won 0 20
我正在尝试为 distplot 子图编写一个 for 循环。 我有一个包含许多不同长度列的数据框。 (不包括 NaN 值) fig = make_subplots( rows=len(asse
我想创建一个具有密度的 3d 图。 我使用函数 density 首先为特定的 x 值创建一个二维图,然后该函数创建密度并将它们放入 y 变量中。现在我有第二组 x 值并将其再次放入密度函数中,然后我得
全部, 我一直在研究全局所有 MTB 步道的索引。我是 Python 人,所以对于所有涉及的步骤,我都尝试使用 Python 模块。 我能够像这样从 OSM 立交桥 API 中获取关系: from O
我正在使用 e1071 包中的支持向量机对我的数据进行分类,并希望可视化机器实际如何进行分类。但是,在使用 plot.svm 函数时,出现无法解决的错误。 脚本: library("e1071") d
我制作了以下图表,它是使用 xts 对象创建的。 我使用的代码很简单 plot(graphTS1$CCLL, type = "l", las = 2, ylab = "(c)\nCC for I
在绘制状态图时,您如何知道哪些状态放在框中,哪些状态用于转换箭头?我注意到转换也是状态。 我正在查看 this page 上的图 1 : 最佳答案 转换不是状态。转换是将对象从一种状态移动到下一种状态
我是一名优秀的程序员,十分优秀!