搜索结果
查询Tags标签: Point3D,共有 4条记录-
AutoCAD.Net/C#.Net QQ群:193522571 当用户使用的不是默认的WCS坐标系时,打印程序容易打成空白,因为点没有转换
Point3d pt1 = Autodesk.AutoCAD.Internal.Utils.UcsToDisplay(item.MinPoint, false); Point3d pt2 = Autodesk.AutoCAD.Internal.Utils.UcsToDisplay(item.MaxPoint, false); Point2d pStart = Point3dToPoint2d(pt1); Point2d pEnd = Point3dToPoint…
2021/6/18 17:27:28 人评论 次浏览 -
实验一 Java开发环境的安装与配置
一、实验目的掌握JDK的安装步骤(有条件的话可以在Linux系统下安装)。 理解环境变量PATH, CLASSPATH的作用,以及它们的设置方法。 熟悉记事本(或JCreator)编辑环境,编写简单的Application程序,并编译和解释执行。 记录编译和执行Java程序当中的系统错误信息提示,…
2021/6/6 22:21:01 人评论 次浏览 -
POJ.2069 最小球覆盖
题链 退火法 #include <iostream> #include<cstdio> #include<algorithm> #include<cstring> #include<cmath> #define eps 1e-7 #define MS 50 using namespace std;int n,m; struct point3D {double x,y,z; } data[MS];double dis(point3…
2021/6/5 18:51:14 人评论 次浏览 -
C/C++编程:C++类封装的布局成本
C++中的类 C中的: typedef struct point3d{float x;float y;float z; }Point3D;#define Point3d_print(pd) \printf("%g, %g, %g", pd->x, pd->y, pd->z);// ***与C++中的 class Point3D{ public:Point3D(float x = 0.0, float y = 0.0, float z =…
2021/5/3 14:25:30 人评论 次浏览