예제 #1
0
파일: Vec2.c 프로젝트: Shanicky/libCello
float length(var self) {
  return type_class_method(type_of(self), Vector, length, self);
}
예제 #2
0
파일: core.c 프로젝트: whatot/ma_c
local var return_true(var self)
{
	return type_class_method(self, ReturnTrue, return_true, self);
}
예제 #3
0
파일: Vec2.c 프로젝트: Shanicky/libCello
float dot(var self, var obj) {
  return type_class_method(type_of(self), Vector, dot, self, obj);
}