This commit is contained in:
32
packages/elixir/lib/kreuzberg/bounding_box.ex
generated
Normal file
32
packages/elixir/lib/kreuzberg/bounding_box.ex
generated
Normal file
@@ -0,0 +1,32 @@
|
||||
# This file is auto-generated by alef — DO NOT EDIT.
|
||||
# alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75
|
||||
# To regenerate: alef generate
|
||||
# To verify freshness: alef verify --exit-code
|
||||
# Issues & docs: https://github.com/kreuzberg-dev/alef
|
||||
defmodule Kreuzberg.BoundingBox do
|
||||
@moduledoc "Bounding box coordinates for element positioning."
|
||||
|
||||
@typedoc "Bounding box coordinates for element positioning."
|
||||
@type t :: %__MODULE__{
|
||||
x0: float(),
|
||||
y0: float(),
|
||||
x1: float(),
|
||||
y1: float()
|
||||
}
|
||||
|
||||
defstruct x0: 0.0,
|
||||
y0: 0.0,
|
||||
x1: 0.0,
|
||||
y1: 0.0
|
||||
|
||||
defimpl Jason.Encoder do
|
||||
@doc false
|
||||
def encode(value, opts) do
|
||||
value
|
||||
|> Map.from_struct()
|
||||
|> Enum.reject(fn {_k, v} -> v == nil end)
|
||||
|> Enum.into(%{})
|
||||
|> Jason.Encoder.encode(opts)
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user