Source code for kittycad.models.project_entity_to_plane
from typing import List
from ..models.point3d import Point3d
from .base import KittyCadBaseModel
[docs]
class ProjectEntityToPlane(KittyCadBaseModel):
"""The response from the `ProjectEntityToPlane` command."""
projected_points: List[Point3d]