CApphot:new
The new method creates an instance of the CApphot class. This method returns to the caller a reference to the object it creates. The calling code must assign this reference to a name (see below). If the object cannot be created, nil is returned.
Note: This method's name uses all lower case to present it as the analog of the C++ new operator. Generally, the names of class methods begin with an uppercase letter but new and delete are different.
A = CApphot:new()
A = CApphot:new( CApphot2 )
The following example shows the default constructor and destructor pair:
|
-- create a new instance of A of the CApphot class. |
|
-- other uses of the class go here, between new and delete. |
|
-- deletes the object and its associated memory. |
The next example shows the use of the 2 constructors:
|
-- copy constructor, duplicates the data in A1 |
|
-- default constructor |
|
-- Set the value of nRadius1 |
|
-- Set the value of nRadius2 |
|
-- Set the value of nRadius3 |
|
-- Measure object at (x,y) in CImage I |
|
-- result: Mag = 15.256 |