摘要: 1.把C++当成一门新的语言学习(和C没啥关系!真的。); 2.看《Thinking In C++》,不要看《C++变成死相》; 3.看《The C++ Programming Language》和《Inside The C++ Object Model》,不要因为他们很难而我们自己是初学者所以就不看; 4.不要被VC、BCB、BC、MC、TC等词汇所迷惑——他们都是集成开... 阅读全文
posted @ 2010-07-24 16:41 softimagewht 阅读(291) 评论(0) 推荐(0)
摘要: macroScript BFF_Exporter category:"Bobo_s Tools" (-----------------------------------------------------------------------BOBO'S FILE FORMAT (BFF) --(formerly known as "Back From Five")--Beta 0.4.2--Started: 01/10/2002--Edited : 09/24/2003--Code by Borislav Petrov--bobo@email. 阅读全文
posted @ 2010-07-24 08:32 softimagewht 阅读(567) 评论(0) 推荐(0)
摘要: -- BFF Mesh Definition For [Box01]-- Version 0.4.0 - 09/20/2003 -- Exporter by Borislav 'Bobo' Petrov -- http://www.scriptspot.com/bobo/ --------------------------------------------------------------------- SOURCE SCENE NAME: [Untitled] -- EXPORT DATE: [21.09.2003 13:15:37] -- SOURCE VERSION 阅读全文
posted @ 2010-07-24 08:29 softimagewht 阅读(303) 评论(0) 推荐(0)
摘要: The following example demonstratesThe use of the System.Windows.Forms.Timer DotNetObject as alternative to the MAXScript rollout Timer control.The main advantage of the DotNet version is the ability to call MAXScript functions at given intervals without the need for a rollout.MAXSCRIPT CODE:theTimer 阅读全文
posted @ 2010-07-24 08:14 softimagewht 阅读(546) 评论(0) 推荐(0)
摘要: The following example demonstratesThe use of the System.Windows.Forms.OpenFileDialog DotNetControl as alternative to the MAXScript GetOpenFileName..The main advantage of the DotNet version is the ability to select multiple files at once.theDialog = dotNetObject "System.Windows.Forms.OpenFileDia 阅读全文
posted @ 2010-07-24 08:13 softimagewht 阅读(974) 评论(0) 推荐(0)
摘要: The following example demonstrates The use of the System.Windows.Forms.Label DotNetControl to output formatted text to a rollout. Setting the Font of the Label using a System.Windows.Forms.FontDialog ... 阅读全文
posted @ 2010-07-24 08:12 softimagewht 阅读(597) 评论(0) 推荐(0)
摘要: The following example demonstrates the use of the System.Windows.Forms.Clipboard DotNetClass to read and write bitmaps from/to the Windows Clipboard.The script can be saved into one of the Startup fol... 阅读全文
posted @ 2010-07-24 08:10 softimagewht 阅读(208) 评论(0) 推荐(0)
摘要: ----输出模型信息mesh01 = snapshotasmesh selection[1]out_name = ((getdir #export)+"/ee.txt")out_file = createfile out_name--点总数输出numberverts = mesh01.numverts --面总数输出numberfaces = mesh01.numfacesformat "%,%\n" numberverts numberfaces to:out_file--点位置集合for i = 1 to numberverts do (v = ge 阅读全文
posted @ 2010-07-23 21:32 softimagewht 阅读(795) 评论(0) 推荐(0)
摘要: 3dmax的导出插件是用来把做好的3d模型导出成自己引擎需要的格式的一个dll,它由3dmax加载调用.具体怎样去写一个插件,小T不多说,在3dmax的sdk里面有比较详细的介绍,在google上面也能搜索到不少的源代码,这里说的只是3dmax的数据组织方式,以及怎么获取转换3dmax的数据. 3dmax里面一个比较重要的概念就是INode,3dmax的场景模型都是由一个个的INode组成,这些INode构成一棵体系树,而各个真实的模型都是附着到一个INode上面的,3dmax的sdk提供了怎样获取INode指针,怎样获取INode的几个Matrix的方法,这个能在max的sdk里面找到... 阅读全文
posted @ 2010-07-23 16:26 softimagewht 阅读(1679) 评论(0) 推荐(0)
摘要: 3Dmax导出插件制作(译文)前言:本教材将建立一个3dMax导出插件。目的是帮助使你掌握建立MAX插件的基础知识和学习怎样从3ds max中导出场景数据。本教材一共五个部分,每一部分都带有相应源码,相应的目录如下:第一节:开始第二节:几何体第三节:灯光和纹理第四节:动画和修正第五节:定制数据注:MaxSDK 类 ,用Iderivedobject 格式MaxSDK 方法,用DoExport() 格... 阅读全文
posted @ 2010-07-23 16:24 softimagewht 阅读(2707) 评论(0) 推荐(0)