- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
编译这段代码时,我得到:
fatal error C1083:无法打开包含文件:'fstream.h':没有这样的文件或目录
为什么?
代码:
#include <windows.h> // use as needed for your system
#include <gl/Gl.h>
#include <gl/glut.h>
#include <iostream>
#include <fstream.h>
//**************Global Data
char ifileName[30],oFileName[30];
fstream inFile,outFile;
//************ Data structure
struct GLfloatPoint
{ GLfloat x,y;
};
const int MAX = 100;
class GLfloatPointArray
{
public:
int num;
GLfloatPoint pt[MAX];
};
//***************** subprograms
typedef GLfloat colorType[3];
// subprogram used to draw the control points separately
void drawDot (GLfloat x, GLfloat y, GLfloat r, GLfloat g, GLfloat b)
{ glColor3f(r,g,b);
glBegin (GL_POINTS);
glVertex2f (x,y);
glEnd();
}
// Drawing subprogram - this will draw the curve from a set of points
void drawFloatPolyLine (GLfloatPointArray P, colorType c)
{ glColor3fv (c);
glBegin(GL_LINE_STRIP);
for (int i=0; i < P.num; i++)
glVertex2f (P.pt[i].x,P.pt[i].y);
glEnd();
}
//******************** myInit
void myInit(void)
{
glClearColor(1.0,1.0,1.0,0.0); // set white background color
glColor3f (0.0f,0.0f,0.0f); //default color
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluOrtho2D(0.0, 640.0, 0.0, 480.0);
// get data files
cout << "Enter the input file name: ";
cin >> ifileName;
inFile.open (ifileName,ios::in);
if (inFile.fail())
return;
// if want to see points for debugging add output
// cout << "Enter the output file name: ";
// cin >> oFileName;
// outFile.open (oFileName,ios::out);
// if (outFile.fail())
// return;
}
//***************** BEZIER Curve subprograms
// Read the control points
void readControlPoints (GLfloatPointArray &P)
{
inFile >> P.num;
for (int j = 0; j < P.num; j++)
inFile >> P.pt[j].x >> P.pt[j].y;
}
// output control points to a text file - if you want to see the
// computations
void printPointArray (GLfloatPointArray P)
{
outFile << "Size: " << P.num << endl << "Points:" << endl;
for (int j = 0; j < P.num; j++)
outFile << "(" << P.pt[j].x << "," << P.pt[j].y << ")" << endl;
}
const int MAXCONTPTS = 100;
int c[MAXCONTPTS]; // the binomial coefficients
//helper routines - compute the coefficient
void ComputeCoeff (int n)
{ int j,k;
for (k=0;k<=n;k++)
{ //compute n! / (k!*(n-k)!)
c[k] = 1;
for (j = n;j>=k+1;j--)
c[k] *=j;
for (j = n-k;j>=2;j--)
c[k] /= j;
}
}
// compute the blending value
float BlendingValue (int n, int k, float t)
{ int j;
float bv;
// compute c[k]*t^k * (1-t)^(n-k)
bv = c[k];
for (j=1; j<=k;j++)
bv *= t;
for (j = 1;j<=n-k;j++)
bv *= (1-t);
return bv;
}
// compute one point on the Bezier curve - fixed value of t
void ComputePoint (float t, int n, GLfloatPoint & p,
GLfloatPointArray ctrlPts)
{ int k;
float b;
p.x = 0.0;
p.y = 0.0;
for (k = 0; k<=n;k++)
{ b = BlendingValue (n,k,t);
p.x += ctrlPts.pt[k].x*b;
p.y += ctrlPts.pt[k].y*b;
}
}
// compute the array of Bezier points - drawing done separately
void Bezier ( GLfloatPointArray controlPts, int numInter,
GLfloatPointArray & curve)
{ // there are numContPts+1 control points and numInter t values to evaluate the curve
int k;
float t;
ComputeCoeff (controlPts.num-1);
curve.num = numInter+1;
for (k=0; k<=numInter; k++)
{ t = (float) k / (float) numInter;
ComputePoint (t, controlPts.num-1,curve.pt[k],controlPts);
}
}
//************************ myDisplay
void myDisplay(void)
{
int numbCurves;
GLfloatPointArray ControlPts,BezCurve;
colorType C = {0.0f,1.0f,0.0f};
glClear(GL_COLOR_BUFFER_BIT); // clear the screen
inFile >> numbCurves;
for (int i = 0; i < numbCurves; i++)
{
// read control points and draw them in red big points
readControlPoints (ControlPts);
glPointSize (4.0);
for (int j = 0; j < ControlPts.num; j++)
drawDot (ControlPts.pt[j].x,ControlPts.pt[j].y,1,0,0);
glPointSize (1.0);
// Compute the Bezier curve points and draw
Bezier (ControlPts,50,BezCurve);
// draw the Bezier curve
drawFloatPolyLine (BezCurve,C);
glFlush ();
}
}
//**************************** main
void main(int argc, char** argv)
{
glutInit(&argc, argv); // initialize the toolkit
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB); // set display mode
glutInitWindowSize(640,480); // set window size
glutInitWindowPosition(100, 150); // set window position on screen
glutCreateWindow("Bezier Curve drawing"); // open the screen window
glutDisplayFunc(myDisplay); // register redraw function
myInit();
glutMainLoop(); // go into a perpetual loop
}
最佳答案
标准标题称为 <fstream>
.
编辑:由于标题被重命名而没有 .h
扩展名,所有符号都移至 std::
命名空间。您可能想要添加 using namespace std;
指令或资格 cin
, cout
和 fstream
在你的代码中。
关于c++ - Visual Studio 2008 速成版中的 "Cannot open include file: ' fstream.h '"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3983459/
我想根据我使用的 visual studio 版本编译不同的东西,比如 #if VISUAL_STUDIO_VERSION > 2015 eventH?.Invoke(this, EventArgs.
在 Visual Studio 2010 中调试并将鼠标悬停在变量名称上时,我可以选择使用 3 种不同的内置可视化工具:文本、XML 和 HTML。 这是我所指的示例: 由于我越来越多地使用基于 JS
我将可视化编程语言理解为允许程序员在屏幕上操作图形(而不是文本)对象以构建功能的语言。 我在 C#、VB 等中看到的最接近的东西是 RAD 控件,但这只是组成 UI 和最简单的功能——甚至与语言本身无
我目前正在使用 Visual Studio 2015 来编程 ASP.NET Core 应用程序。我对安装 Visual Studio 2017 有以下疑问: 什么被认为是最佳实践和/或最干净的方法?
尝试从扩展和更新获取 Visual Studio 扩展时,出现以下错误:- 向 visualstudiogallery.msdn.microsoft.com/Services/VStudio/Exte
我已经开发了Windows服务,并且该服务正在我的帐户下在本地计算机上运行。当我尝试通过在Visual Studio 2008中将其作为一个过程附加该服务来调试该服务时,我得到“无法附加到该过程。 V
作为标准安装的一部分,Visual Studio Code 带有一个名为“Monokai Dimmed”的颜色主题。 有没有办法将它移植到 Visual Studio 2015?我检查了社区主题( h
Visual Studio Community Edition是否可以使用Visual Studio Online帐户上的存储库? 我一直为包含在Online帐户中的Visual Studio Onl
我正在使用文本可视化工具在 Visual Studio 中调试字符串变量。然而,似乎字符串中间的大部分不见了。这背后的原因是什么? 最佳答案 Visual Studio 中的 Text Visuali
我正在开始一个涉及使用多个 SDK 的新项目,包括: 英特尔凌动开发者 SDK 文本转语音 SDK(建议?) 某种网络摄像头和增强现实支持(建议?) 我目前有 2008,但我也可以安装 2010。是否
我想知道,如果我发送一个解决方案文件夹(它是用 visual studio C# 编写的),您可以在 visual studio for mac 中打开解决方案吗? 在visual studio 20
有没有办法在 Visual Studio Code 和 Visual Studio 中设置相同的快捷方式(而不必每次都手动更改它们)? 例如,我在 Visual Studio Code 中经常使用 A
我无法启用 实时可视化树 在 Visual Studio 2017 用于 UWP 应用程序 (C#)。这个工具在 VS2015 上工作,但在 VS2017 中从来没有为我工作过。它对我的 WPF 项目
我刚开始了解 Visual Studio Code。我想知道,我可以将 Visual Studio 替换为所有 .NET 开发相关的工作吗? 我可以节省 Visual Studio 许可的成本吗? V
我安装了具有有效许可证(Visual Studio 订阅)的 Visual Studio 2019 企业版(VS 2019 16.1.4),它运行良好。 突然之间,当我尝试打开项目或项目中的任何文件时
Visual Studio 2015 Pro 提供以下 错误 : error BC36716: Visual Basic 9.0 does not support implicit line cont
我正在我的 PC 中使用 .net Framework 2.0 和 Visual C#(Microsoft Visual Studio 2008)开发 Windows 应用程序。 完成我的项目后,我必
有什么方法可以在启动 VS 时禁用 VA X 并仅在需要时将其重新打开?因为它会导致一些滞后。我似乎在 VS 的选项或 VA 的选项中都找不到该选项。 最佳答案 持shift在 Visual Stud
我可以将 Visual Studio 命令提示符 与免费的 Visual C# Express 一起使用吗? Visual Studio 命令提示符 被引用 here : Run 'Visual St
这很容易成为 Visual Studio 历史上最烦人的“功能”之一,我不明白它为什么存在 -- 曾经 . 为什么 CodePlex 项目需要关心我使用的是什么版本的 Visual Studio? 在
我是一名优秀的程序员,十分优秀!