首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看全站
#-------------------------------------------------------------------------------
# Name:        YJ_IKFK_RIG_UI
# Purpose:     Create IKFK UI
#
# Author:      YangJie
#
# Created:     23/6/2014
# Email:691633493@qq.com
#-------------------------------------------------------------------------------
from maya.cmds import*
from YJ_FK_Rig import*
from YJ_Load_Jnt import*
......................
阅读全部 | zhuqingting 贴于 2014年6月23日 08:17     hide bbsi
#-------------------------------------------------------------------------------
# Name:       YJ_Foot_Rig
# Purpose:    Create IK
#
# Author:      YangJie
#
# Created:     15/04/2014
# Email:       691633493@qq.com
#-------------------------------------------------------------------------------


def YJ_CreateFootRig(StarBaseJnt,EndBaseJnt,HeelPvJnt,footanim,footIkHandle):
......................
阅读全部 | zhuqingting 贴于 2014年6月23日 08:15     hide bbsi
#-------------------------------------------------------------------------------
# Name:        YJ_FK_RIG
# Purpose:     Create_IKFK_RIG
#
# Author:      YangJie
#
# Created:     08/04/2014
#Email:        691633493@qq.com
#-------------------------------------------------------------------------------

from maya.cmds import*
import maya.mel as mm
......................
阅读全部 | zhuqingting 贴于 2014年6月23日 08:15     hide bbsi
#====================================================================================================
#CreateCurvesAndSave
#
#Designer:YangJie
#Email:691633493@qq.com
#Version:2.2
#====================================================================================================
from maya.cmds import*
from YJ_ZeroGrp import*
from YJ_ParentShape import*
import glob,os
import getpass
......................
阅读全部 | zhuqingting 贴于 2014年6月23日 08:12     hide bbsi
#====================================================================================================
#CreateCurvesAndSave
#
#Designer:YangJie
#Email:691633493@qq.com
#Version:2.2
#====================================================================================================
from maya.cmds import*
from YJ_ZeroGrp import*
from YJ_ParentShape import*
import glob,os
import getpass
......................
阅读全部 | zhuqingting 贴于 2014年6月23日 08:12     hide bbsi
#include <stdio.h>

int main(void)
{
    int a[]={1,3,6,5,8,4};
    int i=0,j=0;
    int temp=0;

    for(j=0;j<6;j++)
    {


......................
阅读全部 | lsj8924 贴于 2014年6月22日 12:20     hide bbsi
<form action="Payment.asp" method="post" name="Inquire" target="_blank" id="Inquire" >
                                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
 
                                    <tr>
                                      <td width="100%" height="5" colspan="3"></td>
                                    </tr>
                                    <tr>
                                      <td colspan="3" ><% call ShowProduct(32) %>

</td>
                                    </tr>
                                  </table>
......................
阅读全部 | aolangtv 贴于 2014年6月17日 10:52     hide bbsi
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <tchar.h>

//ref_start[http://www.w3.org/TR/PNG/]
/* Table of CRCs of all 8-bit messages. */
unsigned long crc_table[256];

/* Flag: has the table been computed? Initially false. */
int crc_table_computed = 0;

/* Make the table for a fast CRC. */
......................
阅读全部 | 日知己所无 贴于 2014年6月15日 07:27     hide bbsi
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/connss.asp" -->
<!--#include file="include/global.asp" -->
<!--#include file="check.asp" -->
<%
if Right_Limit(47)<>1 then
response.Write "<script language=javascript>alert('对不起,你没有权限!');location.href='javascript:history.go(-1)'</script>"
end if

ty         = request("ty")
s1         = Request("s1")
s2         = Request("s2")
......................
阅读全部 | 梁加加 贴于 2014年6月10日 17:46     hide bbsi
去掉最后一位 | (101101->10110) | x shr 1
在最后加一个0 | (101101->1011010) | x shl 1
在最后加一个1 | (101101->1011011) | x shl 1+1
把最后一位变成1 | (101100->101101) | x or 1
把最后一位变成0 | (101101->101100) | x or 1-1
最后一位取反 | (101101->101100) | x xor 1
把右数第k位变成1 | (101001->101101,k=3) | x or (1 shl (k-1))
把右数第k位变成0 | (101101->101001,k=3) | x and not (1 shl (k-1))
右数第k位取反 | (101001->101101,k=3) | x xor (1 shl (k-1))
取末三位 | (1101101->101) | x and 7
取末k位 | (1101101->1101,k=5) | x and (1 shl k-1)
取右数第k位 | (1101101->1,k=4) | x shr (k-1) and 1
......................
阅读全部 | wp231957 贴于 2014年6月9日 13:04     hide bbsi
上一页 224 225 226 227 228 229 230 231 232 233 下一页