上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页
摘要: maya cmds pymel 选择 uv area(uv 面积) 为0 的面 cmds.selectType( pf=True ) cmds.polySelectConstraint( m=3, t=8, ta=True, tab=(0, 0.000010) ) # to get face wit 阅读全文
posted @ 2019-04-25 11:23 ibingshan 阅读(583) 评论(0) 推荐(0) 编辑
摘要: maya cmds pymel selectType() 选择类型切换 import maya.cmds as cmds import maya.mel as mel mel.eval('changeSelectMode -component;') sels = cmds.ls(sl = 1, o 阅读全文
posted @ 2019-04-25 11:19 ibingshan 阅读(649) 评论(0) 推荐(0) 编辑
摘要: maya cmds pymel 'ESC' 退出 while, for 循环 import maya.cmds as cmds cmds.progressWindow(isInterruptable=1) while 1 : print "kill me!" if cmds.progressWind 阅读全文
posted @ 2019-04-25 11:02 ibingshan 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 平面多边形凹凸性 叉乘法判断 前提条件:知道多边形顶点的顺序 [P0, P1, P2, P3, ..., Pn],n > 4 第一步: 求向量 P0P1 和 P1P2 的 叉积,假设得到向量 V0 第二步: 顺顶点的顺序,求得 PnP(n+1) 和 P(n+1)P(n+2) 的叉积 Vn 第三步: 阅读全文
posted @ 2019-04-23 15:56 ibingshan 阅读(912) 评论(0) 推荐(0) 编辑
摘要: bat choice 命令 choice /c YNC /m "Are you sure?" if %errorlevel%==1 goto Y if %errorlevel%==2 goto N if %errorlevel%==3 goto C :Y echo Y :N echo N :C ec 阅读全文
posted @ 2019-04-12 14:16 ibingshan 阅读(1042) 评论(0) 推荐(0) 编辑
摘要: 使用向量叉积来求点到直线的距离 向量 p(x, y) 直线上的两点的向量:a(x1, y1), b(x2, y2) 向量 ab = a - b 点 p 到直线 ab 的距离:|p x ab| / |ab| |p x ab|是 p 和 ab 形成的四边面的面积,那么除以 底边|ab| 就是高,即 p 阅读全文
posted @ 2019-04-11 16:49 ibingshan 阅读(4564) 评论(0) 推荐(0) 编辑
摘要: maya cmds pymel undoInfo chunk 撤销束 cmds.undoInfo(openChunk = 1) # your code cmds.undoInfo(closeChunk = 1) 这样,在两行 chunk 之间的可撤销 cmds 命令都会被封装成一个undo 阅读全文
posted @ 2019-03-27 15:13 ibingshan 阅读(350) 评论(0) 推荐(0) 编辑
摘要: pyqt pyside QLineEdit 重写键盘事件 阅读全文
posted @ 2019-03-26 15:01 ibingshan 阅读(1563) 评论(0) 推荐(0) 编辑
摘要: pyqt pyside 设置窗口关闭时删除自身 self.setAttribute(QtCore.Qt.WA_DeleteOnClose) 阅读全文
posted @ 2019-03-26 13:28 ibingshan 阅读(1215) 评论(0) 推荐(1) 编辑
摘要: pyqt pyside 窗口自动调整大小 在QTimer中一直调整 在某个事件中单独调整一次 至于为什么需要加一段循环,请参考:https://stackoverflow.com/questions/28660960/resize-qmainwindow-to-minimal-size-after- 阅读全文
posted @ 2019-03-21 16:53 ibingshan 阅读(2664) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页