说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 评分规则的开发
1)  development of scoring rubrics
评分规则的开发
2)  application of scoring rubrics
评分规则的应用
3)  Development Order
开发规则
1.
The Function of Development Order in Disputes of Real Estate——Experiences of Development Control in UK;
谈开发规则在物业纠纷中的前置作用——英国开发控制的经验借鉴
4)  grading rule
评分规则
1.
Taking participates in the 39th world gymnastics championship tournament s male athlete as the object of study,after new grading rule implementation the world man gymnastics development pattern conducts the research.
以参加第39届世界体操锦标赛的男子运动员为研究对象,对新评分规则实施后世界男子体操发展格局进行研究。
5)  scoring rules
评分规则
1.
According to Snowboard Judges Manual from Federation International of Ski, considering the current development of Chinese half-pipe snowboard event, the article has a understanding on the scoring rules with the viewpoint of referee.
依据国际雪联单板滑雪裁判手册,结合我国现阶段单板U型场地滑雪项目发展状况,以裁判员的视角对此项目的评分规则进行理解与认识。
2.
This paper focuses on the study of revising the scoring rules of art and difficulty in FIG Competitive Calisthenics.
运用比较分析的方法对FIG竞技健美操评分规则中的艺术与难度评分的修改进行研究、分析并阐述了高质量完成难度技术动作和成套动作编排的艺术性将是竞技健美操发展的必然趋势,并对我国竞技健美操存在问题及今后的发展提出建设性设想。
6)  code of points
评分规则
1.
Changes in Technical Regulation and Code of Points of Federal International Gymnastic (FIG) for Sports Acrobatic in 2002 and Contermeasures for China Sports Acrobatic;
2002年国际技巧技术规程与评分规则的变化及我国的对策
2.
There is a large difference among the new code of points of rhythmic gymnastics and the old ones.
本周期艺术体操评分规则与以往的评分规则有很大的不同。
3.
According to the analysis?comparison and research of code of points from 1971 to 2001,it is discovered that impetus factors consists of "internal impetus" and "external impetus".
通过对 1971~ 2 0 0 1年评分规则进行分析、比较和研究 ,发现影响规则演变的动力因素既有内在动力又有外在动力。
补充资料:Pro/E二次开发使用toolkit开发trigger的程序

使用toolkit开发trigger的程序时,往往需要能够连续通过trigger来触发dll中的函数.
我碰到的问题:
   1.配置trigger:
   Name: CimDll
   Event: Create PIV
   Time:  POST
   RequireNO
   DLL:Cim.dll
   Function:PDMTPIVCreatePostOperation
   
  2.源代码:
   int PDMDLLInit()
{
   PTCERROR pdm_status;
   FILE      *g_pfileLog;
   g_pfileLog =fopen("test.dat","w");
   setbuf(g_pfileLog,NULL);
   fprintf(g_pfileLog,"begin test\n");
   pdm_status = PDMTriggerRegister("PDMTPIVCreatePostOperation", PDMTPIVCreatePostOperation);
   if (pdm_status != PDM_SUCCESS)
   {  
    printf("Failed to Register Trigger PIV Create Post.\n");
   }
    return (pdm_status);
}


int PDMTPIVCreatePostOperation(int argc, void **argv)
{
   fprintf(g_pfileLog,"test\n");
   .....
   fprintf(g_pfileLog,"end test\n");
   fclose(g_pfileLog);


}


   结果:以上代码存在的问题:如果我们在第一次checkin到C/S中后,删除test.dat文件,然后再进行checkin时,发现没有再生成test.dat,在函数PDMTPIVCreatePostOperation()中所进行的对文件的操作都无效.
   原因:我们使用trigger触发时,真正起作用的是函数:PDMTPIVCreatePostOperation(),而PDMDLLInit()只是在第一次checkin时起作用,所以在第一次调用PDMTPIVCreatePostOperation()后,我就fclose(g_pfileLog),所以出现了上面的情况.所以注意的是:不要把一些重要的东西放在函数PDMDLLInit()中.

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条