Пример #1
0
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
float dot(var self, var obj) {
  return type_class_method(type_of(self), Vector, dot, self, obj);
}