doxygen classify/mfx.cpp

This commit is contained in:
Jim O'Regan 2015-07-20 16:57:22 +01:00
parent 40b94b1fbf
commit 6c511b9fa0

View File

@ -165,23 +165,22 @@ MICROFEATURES ConvertToMicroFeatures(MFOUTLINE Outline,
} /* ConvertToMicroFeatures */ } /* ConvertToMicroFeatures */
/* /**
** Parameters: * This routine computes the feature parameters which describe
** Start starting point of micro-feature * the micro-feature that starts and Start and ends at End.
** End ending point of micro-feature * A new micro-feature is allocated, filled with the feature
** Globals: none * parameters, and returned. The routine assumes that
** Operation: * Start and End are not the same point. If they are the
** This routine computes the feature parameters which describe * same point, NULL is returned, a warning message is
** the micro-feature that starts and Start and ends at End. * printed, and the current outline is dumped to stdout.
** A new micro-feature is allocated, filled with the feature * @param Start starting point of micro-feature
** parameters, and returned. The routine assumes that * @param End ending point of micro-feature
** Start and End are not the same point. If they are the * @return New micro-feature or NULL if the feature was rejected.
** same point, NULL is returned, a warning message is * @note Globals: none
** printed, and the current outline is dumped to stdout. * @note Exceptions: none
** Return: New micro-feature or NULL if the feature was rejected. * @note History:
** Exceptions: none * - 7/26/89, DSJ, Created.
** History: 7/26/89, DSJ, Created. * - 11/17/89, DSJ, Added handling for Start and End same point.
** 11/17/89, DSJ, Added handling for Start and End same point.
*/ */
MICROFEATURE ExtractMicroFeature(MFOUTLINE Start, MFOUTLINE End) { MICROFEATURE ExtractMicroFeature(MFOUTLINE Start, MFOUTLINE End) {
MICROFEATURE NewFeature; MICROFEATURE NewFeature;