Package: graphene
Function graphene:rect-vertices
Lambda Listgraphene:rect-vertices (rect vertices) ArgumentsReturn ValueThe list with 4 graphene:vec2-t instances. Details        Computes the four vertices of a rectangle.   Examples
(graphene:with-rect (rect 0 0 2 4)
  (graphene:with-vec2s (v1 v2 v3 v4)
    (mapcar #'graphene:vec2-to-float
            (graphene:rect-vertices rect (list v1 v2 v3 v4)))))
=> ((0.0 0.0) (2.0 0.0) (2.0 4.0) (0.0 4.0))           | See also | 
2025-08-09