TA的每日心情 | 奋斗 2015-11-17 09:09 |
---|
签到天数: 7 天 连续签到: 1 天 [LV.3]测试连长
|
2#
楼主 |
发表于 2007-1-8 22:17:01
|
只看该作者
脚本1:(完成了捕获功能和比较功能)
#Test Type:Compiled Module
#########################################################
Descrīption: User-Define function using to capture size of a object
#########################################################
function size_capture(object, inout size)
{
auto height,width;
obj_get_info(object, "height", height);
obj_get_info(object, "width", width);
size = height * width;
return 0;
} |
|