// UMBC - CMSC 341 - Spring 2026 - Proj0 #include "art.h" Art::Art(){ } Art::Art(int height, int width){ } Art::~Art(){ } void Art::clear(){ } void Art::create(int initiate){ } void Art::dumpColors(string pixel) const{ if (m_height > 0 && m_width > 0 && m_painting != nullptr){ for (int i=1;i <= m_height;i++){ for (int j=1;j<=m_width;j++){ std::cout << "\x1b[38;5;" << to_string(m_painting[i-1][j-1]) << "m" << pixel << pixel << RESET; } cout << endl; } cout << endl; } } void Art::dumpValues() const{ if (m_height > 0 && m_width > 0 && m_painting != nullptr){ for (int i=1;i <= m_height;i++){ for (int j=1;j<=m_width;j++){ cout << m_painting[i-1][j-1] << " "; } cout << endl; } cout << endl; } } Art::Art(const Art& rhs){ } const Art& Art::operator=(const Art& rhs){ } bool Art::left2Right(const Art& rhs){ } bool Art::top2Bottom(const Art& bottom){ } bool Art::reverse(){ } bool Art::rotate(){ }