登录
首页 » 算法 » Displays a rotatable and scaleable wire frame of any 3D mathematical function....

Displays a rotatable and scaleable wire frame of any 3D mathematical function....

于 2022-02-02 发布 文件大小:26.77 kB
0 154
下载积分: 2 下载次数: 1

代码说明:

Displays a rotatable and scaleable wire frame of any 3D mathematical function. This can be made up from the normal VB maths plus inverse and hyperbolic functions. Functions can be created and saved as wanted. Image vertices can also be saved for use elsewhere. The MS ScriptControl Eval function simplifies calculations enormously and its use is demonstrated. Also shown are MoveToEx, LineTo which are much faster than the VB equivalents and very easy to use. Included are a set of string handling subroutines such as count characters, squeeze out spaces, replace sub-strings etc. Commented throughout including the 3D maths and perspective methods. All the files are visible and the program is written for an 800x600 screen.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Dialog自适应屏幕分辨率
    子控件自适应窗口大小的改变 对所有需要改变窗口大小的Dialog提供调用接口    * @方法功能:  子控件自适应窗口大小的改变        * @参数介绍:        -hWnd:要缩放的Dialog的窗口句柄,可在Dialog中通过GetSafeHwnd()方法获得;        -typeFlag: 缩放标志,其可能取值如下:0表示原始大小(缺省),1最大化,2按照times的值放大或缩小一定倍数后居中。        -times : Dialog的放大倍数,缺省值为1.0,只有当typeFlag值为2时才有效    * @返回值:FALSE表示传入的第一个参数hWnd=NULL,否则返回TRUE;    * @注意事项:        -1、所有子控件的大小是按照原来的Dialog同比例进行放大,以免放大后失真        -2、放大后如果窗口大小超过显示器可用区域(除去任务栏),会自动调整使得窗口最大化但是长和宽的比例扔保持不变,以免失真        -3、放大后所有的子控件的字体采用的是系统默认字体,所有字体大小是放大后的统一大小        -4、当typeFlag=2&×
    2022-03-11 14:18:59下载
    积分:1
  • 手机通讯录系统
    #include #include #include #include #include struct people {   char name[20];   char tel[20];   int classficition;//类型 1.办公类  2.个人类 3.商务类   char E_mail[30];   people *pNext; }; 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2023-03-23 03:05:04下载
    积分:1
  • 贝叶斯决策方,包括子函数和调用的主程序
    贝叶斯决策方法,包括子函数和调用的主程序-Bayesian decision-making method
    2022-03-03 16:54:13下载
    积分:1
  • 基于奇异值分解的数字图像水印使用复数小波变换
    A 新鲁棒非盲图像水印的方法在本文中。所提出的方法执行通过奇异值分解 (SVD) 改性的复杂小波变换 (CWT) 域图像而连续小波变换提供了更高的容量比实小波域。改性的适当的子带,导致毫不逊色保留质量的水印。拟议的技术的附加好处是其 最常见的攻击的鲁棒性。分析和实验结果表明多改进的性能与纯方法的基于奇异值分解的混合方法 (例如 DWT-SVD 为近年最好基于奇异值分解计划)。
    2022-03-26 02:47:00下载
    积分:1
  • 介绍了GS的核心内容,为想学习GS的人士提供很好的参考...
    介绍了GS算法的核心内容,为想学习GS算法的人士提供很好的参考-Introduction of the GS algorithm is the core content for the GS algorithm to learn to provide good reference
    2022-03-12 07:10:41下载
    积分:1
  • k-means 算法接受输入量 k ;然后将n个数据对象划分为 k个聚类以便使得所获得的聚类满足:同一聚类中的对象相似度较高;而不同聚类中的对象相似度较小。聚类相似度是利用各聚类中对象的均值所获得一个“中心对象”(引力中心)来进行计算的。 Matlab 源代码,以兰花数据集作为测试对象。-k-means algorithm to accept input k then n data object is divided into k-clustering in order to make available to the cluster to meet: the same objects in clustering high similarity and objects in different clustering the similarity smaller. Cluster similarity is the use of the clustering of objects by means of a
    2022-02-01 10:09:59下载
    积分:1
  • 三色球问题 若有一个口袋放有12个球,其中有3个红的,3个白的和6个黑的,从中任取8个球, 问共 这也是一个可用穷举求解的问题。 设任取的红球个数为i, 白球...
    三色球问题 若有一个口袋放有12个球,其中有3个红的,3个白的和6个黑的,从中任取8个球, 问共 这也是一个可用穷举法求解的问题。 设任取的红球个数为i, 白球个数为 j,则黑球个数为8-i-j,用count统计不同的搭配数目- Three chromospheres questions if have a pocket to put have 12 balls, including 3 red, 3 white and 6 black, no matter what takes 8 balls, asked altogether this also is may use the question which the exhaustion method solves. Supposes no matter what takes the red ball integer is i, the white ball integer is j, then the black ball integer is 8-i-j, counts differently with count matches the number
    2022-06-03 14:36:47下载
    积分:1
  • 在VC下的一个小型计
    在VC下的一个小型计算器-the VC of a small calculator
    2022-07-23 10:52:54下载
    积分:1
  • 排序模板实现
    #include #include using namespace std; #define SELECTSORT      1 #define INSERTSORT      1 #define BUBBLESORT      1 #define SHELLSORT       1 #define QUICKSORT       1 #define MERGESORT       1  template
    2022-04-24 16:36:42下载
    积分:1
  • 科学与工程数值求解方程组的类
    科学与工程数值算法求解方程组的类-science and engineering numerical algorithm for solving equations of the type
    2022-03-13 20:51:02下载
    积分:1
  • 696516资源总数
  • 106633会员总数
  • 4今日下载