@@ -0,0 +1,12 @@
classdef Point
properties
x double
y double
end
methods
function obj = Point(xIn, yIn)
obj.x = xIn;
obj.y = yIn;
The note is not visible to the blocked user.