"""Mirror Visualization Module
This module contains the Mirror3D class, which is used to visualize a 3D mirror
surface.
Kramer Harrison, 2024
"""
from __future__ import annotations
from optiland.visualization.system.surface import Surface3D
[docs]
class Mirror3D(Surface3D):
"""A class used to represent a 3D Mirror surface.
Inherits from Surface3D.
Args:
surface (Surface): The mirror surface to be plotted.
extent (tuple): The extent of the mirror surface in the x and y
directions.
Methods:
_configure_material(actor):
Configures the material properties of the mirror surface.
"""
def __init__(self, surface, extent):
super().__init__(surface, extent)