What Do They Mean?
There are several aspects on which all of your programming assignments will be graded. Each aspect is associated with a code, usually 2 letters, but sometimes more. The meaning of the most common ones are explained below.
/***************************************************************************** filename foo.cpp author Artie Fufkin DP email afufkin2@digipen.edu course CS170 assignment 1 due date 9/19/2026 Brief Description: This program calculates the distance to the moon using only a compass and a straight-edge. Functions include: - Distance - Calculate - Convert - Convolve - Contort *****************************************************************************/
Doxygenized version:
/****************************************************************************/ /*! \file foo.cpp \author Artie Fufkin \par DP email: afufkin2@digipen.edu \par Course: CS170 \par Section: A \par Assignment: 1 \date 9/19/2026 \brief This program calculates the distance to the moon using only a compass and a straight-edge. Functions include: - Distance - Calculate - Convert - Convolve - Contort */ /****************************************************************************/
Doxygenized version:/***************************************************************************** Function: EDetect Description: Transforms a bitmap picture by darkening the edges that were detected by the edge-detect algorithm. Inputs: picture - A pointer to the image that will be transformed. resolution - The degree to which the transformation will occur. Outputs: The number of processor cycles required by the algorithm. *****************************************************************************/
/****************************************************************************/ /*! \brief Transforms a bitmap picture by darkening the edges that were detected by the edge-detect algorithm. \param picture A pointer to the image that will be transformed. \param resolution The degree to which the transformation will occur. \return The number of processor cycles required by the algorithm. */ /****************************************************************************/