%--------------------------------------------------------------------------
% POINT
%--------------------------------------------------------------------------
% Creation of a POINT object.
%--------------------------------------------------------------------------
% Syntax
%--------------------------------------------------------------------------
PO = POINT(arg1,arg2)
%--------------------------------------------------------------------------
% Description
%--------------------------------------------------------------------------
% POINT creates a POINT object. This type of object can be used to
% describe geometrical point. A POINT object has a label whereas a NODE does
% not have one. This object has the following properties:
% - name : STRING - label of the POINT object
% - node : NODE object - corresponding node
%--------------------------------------------------------------------------
% Input arguments
%--------------------------------------------------------------------------
% arg1 : STRING - label of the POINT object
% arg2 : NODE - corresponding node
%--------------------------------------------------------------------------
% Output arguments
%--------------------------------------------------------------------------
% PO : POINT object
%--------------------------------------------------------------------------
% Example
%--------------------------------------------------------------------------
PO = POINT(arg1,arg2)
PO =
POINT with properties:
name: 'P4'
node: [1x1 NODE]