Lets suppose i have a class A which implements this function:
function do_Some_Thing_With_Points(obj, P)
obj.other_function();
I would like to understand the following use of this function:
Let a be an instance of A and:
a.do_Some_Thing_With_Points(P);
Is it ok to not pass the parameter obj, and what does it mean?
Thanks!