Programming Course for Beginners - ZedLX

The Easiest Online Computer Programming Course, for Free

Drawing on Images and Auto-assign [5/12]

The procedure boxEdgep fills an edge of a rectangular area.

The signature of procedure boxEdgep is:

  • void boxEdgep(
    • point2D position, (top-left corner)
    • vector2D size,
    • num edgeWidth,
    • colorA color
    • )

The corresponding member function named .boxEdge is available from type image. This member function returns the resulting image. Because of this it has a slightly different signature (it returns a value of type image).

Loading...