microcad-lang 0.5.0

µcad language
Documentation
// Copyright © 2025-2026 The µcad authors <info@microcad.xyz>
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Measure model attribute.

use crate::value::Value;

/// Measure attribute.
#[derive(Clone, Debug, Default)]
pub enum MeasureCommand {
    /// Measure the size of a geometry (for each dimension).
    #[default]
    Size,

    /// Width command
    Width,

    /// Height command
    Height,
}

impl From<MeasureCommand> for Value {
    fn from(command: MeasureCommand) -> Self {
        match command {
            MeasureCommand::Size => Value::String("size".into()),
            MeasureCommand::Width => Value::String("width".into()),
            MeasureCommand::Height => Value::String("height".into()),
        }
    }
}

impl std::fmt::Display for MeasureCommand {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            MeasureCommand::Size => write!(f, "Size"),
            MeasureCommand::Width => write!(f, "Width"),
            MeasureCommand::Height => write!(f, "Height"),
        }
    }
}