From 1c16a821da10b5f461ef9482937165f48213f06f Mon Sep 17 00:00:00 2001 From: Dohyeon Lee Date: Wed, 6 Dec 2023 10:48:08 +0900 Subject: [PATCH] fix document links about `Camera3D` --- src/camera/camera3d.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/camera/camera3d.jl b/src/camera/camera3d.jl index 63305b92566..59f10913600 100644 --- a/src/camera/camera3d.jl +++ b/src/camera/camera3d.jl @@ -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...) @@ -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...)