Skip to content

Commit

Permalink
fix document links about Camera3D
Browse files Browse the repository at this point in the history
  • Loading branch information
ehgus committed Dec 6, 2023
1 parent dbf7a99 commit 1c16a82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/camera/camera3d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ end
cam3d!(scene[; kwargs...])
Creates a `Camera3D` with `zoom_shift_lookat = true` and `fixed_axis = true`.
For more information, see [`Camera3D``](@ref)
For more information, see [`Camera3D`](@ref)
"""
cam3d!(scene; zoom_shift_lookat = true, fixed_axis = true, kwargs...) =
Camera3D(scene, zoom_shift_lookat = zoom_shift_lookat, fixed_axis = fixed_axis; kwargs...)
Expand All @@ -287,7 +287,7 @@ cam3d!(scene; zoom_shift_lookat = true, fixed_axis = true, kwargs...) =
cam3d_cad!(scene[; kwargs...])
Creates a `Camera3D` with `cad = true`, `zoom_shift_lookat = false` and
`fixed_axis = false`. For more information, see [`Camera3D``](@ref)
`fixed_axis = false`. For more information, see [`Camera3D`](@ref)
"""
cam3d_cad!(scene; cad = true, zoom_shift_lookat = false, fixed_axis = false, kwargs...) =
Camera3D(scene, cad = cad, zoom_shift_lookat = zoom_shift_lookat, fixed_axis = fixed_axis; kwargs...)
Expand Down

0 comments on commit 1c16a82

Please sign in to comment.