2023-11-28 23:50:50 -08:00
|
|
|
from typing import Optional
|
2023-09-29 15:51:03 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
from pydantic import BaseModel
|
2023-09-29 15:51:03 -07:00
|
|
|
|
|
|
|
from ..models.point2d import Point2d
|
|
|
|
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class PlaneIntersectAndProject(BaseModel):
|
|
|
|
"""Corresponding coordinates of given window coordinates, intersected on given plane."""
|
2023-09-29 15:51:03 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
plane_coordinates: Optional[Point2d] = None
|