ftp.nice.ch/Attic/openStep/developer/resources/MiscKit.2.0.5.s.gnutar.gz#/MiscKit2/Frameworks/MiscFoundation/MiscGIS.subproj/MiscMathCoord.m

This is MiscMathCoord.m in view mode; [Download] [Up]

/*=========================== MiscMathCoord.m ===============================*/
/* MiscMathCoord is an abstract superclass that supports creation of common
   mathematical coordinate systems.

   DMA Release 0.8, Copyright @1993 by Genesis Project, Ltd. All Rights
   Reserved. For further information on terms and conditions see
		the MiscKit license.

HISTORY
21-Mar-93  Dale Amon at GPL
	   Created.
*/

#import <MiscFoundation/MiscMathCoord.h>
#import <MiscFoundation/MiscMathCoordConverter.h>
#import "_MiscError.h"

@implementation MiscMathCoord

/*===========================================================================*/
/* Initialization methods */
/*===========================================================================*/
/* DESIGNATED INITIALIZER */

-initDescription: (NSString *) txt constants: anObject
 {return 
	[super initDescription: txt
		     converter: [MiscMathCoordConverter new]
		     constants: anObject];
 }


/*---------------------------------------------------------------------------*/
/* Block the designated initializer of our parent class */

-initDescription: (NSString *) txt
       converter: (id <MiscCoordConverterServer>) aConverter
       constants: anObject
{	MISC_ERROR_BAIL;
	return self;
 }


@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.