www.gusucode.com > mbcguitools 工具箱 matlab 源码程序 > mbcguitools/+mbcgui/+motion/MotionEvent.m

    classdef MotionEvent < event.EventData
    %mbcgui.motion.MotionEvent class
    %   mbcgui.motion.MotionEvent extends event.EventData.
    %
    %    mbcgui.motion.MotionEvent properties:
    %       CurrentPoint - Property is of type 'mxArray'
    
    %  Copyright 2000-2016 The MathWorks, Inc. and Ford Global Technologies, Inc.
    
    properties 
        %CURRENTPOINT Property is of type 'mxArray'
        CurrentPoint
    end
    
    
    methods  % constructor block
        function obj=MotionEvent(cp)
        %MOTIONEVENT Class constructor for MotionEvent
        %  EVT = MOTIONEVENT(SRCOBJ, EVENTNAME, POINT) constructs a MotionEvent
        %  object.  This object is sent as the event data for MotionManager events.
        
        % Initialize the CurrentPoint field
        obj.CurrentPoint = cp;
        
        end  % MotionEvent
        
    end  % constructor block
    

end  % classdef