上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 36 下一页

2011年6月13日

dos 读取创建文件。

摘要: fn getEnvironmentPaths =(dosCommand "path >enddv.txt" -----在max 目录中创建一个文件 --- 并自动的处理文件的名字path_array = #() in_text = openfile "enddv.txt" --打开这个文件 进行处理skipToString in_text "=" ----再来在数组中就去掉了等号,这个看似很好,--skiotistring skipToString in_text "c" --语法用法, 打开文件中是一个整个 阅读全文

posted @ 2011-06-13 17:46 盖天00 阅读(1053) 评论(0) 推荐(0) 编辑

省时间的循环处理方法 方案。

摘要: for i in 1 to 2000 do( if i >20 then (for oo in 500 to 520 do( print oo )Loop Exit)print i) 阅读全文

posted @ 2011-06-13 14:01 盖天00 阅读(159) 评论(0) 推荐(0) 编辑

打开外部文件的几种 语法, openFile <filename_string> [ mode:<mode_string> ]

摘要: openFile <filename_string> [ mode:<mode_string> ] 语法 语法默认是,rt - read-only text - file must exist 只读文件,文件必须存在。这个是关键点。r - read-only text - file must exist 只读文件 文件必须存在。rb - read-only binary - file must exist 只读二进制文件,文件必须存在。r+ - read/write text - file must exist 读写文件 文件必须存在a - write-only tex 阅读全文

posted @ 2011-06-13 13:13 盖天00 阅读(707) 评论(0) 推荐(0) 编辑

createFile <filename_string> 读写文件。

摘要: createFile <filename_string> 阅读全文

posted @ 2011-06-13 10:11 盖天00 阅读(154) 评论(0) 推荐(0) 编辑

max demo 路径的走法 ,

摘要: file="g:\\subdir1\\subdir2\\myImage.jpg""g:\subdir1\subdir2\myImage.jpg"filenameFromPath file -- returns: "myImage.jpg""myImage.jpg"getFilenamePath file -- returns: "g:\subdir1\subdir2\""g:\subdir1\subdir2\"getFilenameFile file -- returns: 阅读全文

posted @ 2011-06-13 09:52 盖天00 阅读(169) 评论(0) 推荐(0) 编辑

2011年6月12日

max 文件导入效果。

摘要: thePath = getSavePath() --get a path dialog to specify the pathif thePath != undefined do --if the user did not cancel(theFiles = getFiles (thePath+"\\*.max") --collect all max files in the dir.for f in theFiles do --go through all of them(loadMaxFile f --load the next file---------------- 阅读全文

posted @ 2011-06-12 13:08 盖天00 阅读(167) 评论(0) 推荐(0) 编辑

2011年6月3日

看到一个矩阵概念可能以后用的着。

摘要: 模型的顶点变换矩阵=初始姿势的变换矩阵的逆×姿势变换后的矩阵将其运动姿势变换矩阵×当前顶点相对于该骨骼的偏移向量×该骨骼对当前顶点的影响因子(即权重Weight),---顶点受多个骨骼的影响,我们的权重管理方法。 阅读全文

posted @ 2011-06-03 18:11 盖天00 阅读(184) 评论(0) 推荐(0) 编辑

2011年6月1日

IsValidNode 查看节点是否存在。

摘要: IsValidNode 阅读全文

posted @ 2011-06-01 16:55 盖天00 阅读(164) 评论(0) 推荐(0) 编辑

2011年5月31日

。net 列框写字

摘要: theFrm = dotNetObject "MaxCustomControls.MaxForm"theBox = dotNetObject "MaxCustomControls.MaxTextBox"theBox.width = 290theBox.height = 270theBox.Multiline = truetheBox.Text = "Hey Jude, don't make it bad!\r\nTake a sad song and make it better..."theBox.SelectionStar 阅读全文

posted @ 2011-05-31 17:26 盖天00 阅读(200) 评论(0) 推荐(0) 编辑

。net 调用物体选项框

摘要: theFrm = dotNetObject "MaxCustomControls.SceneExplorerControls.SceneExplorerDialog"thePtr = DotNetObject "System.IntPtr" (windows.getMAXHWND())theHwnd = DotNetObject "MaxCustomControls.Win32HandleWrapper" thePtrtheFrm.Show(theHwnd)theFrm = dotNetObject "MaxCustomCo 阅读全文

posted @ 2011-05-31 17:23 盖天00 阅读(222) 评论(0) 推荐(0) 编辑

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 36 下一页

导航