changeset 2069:15f27fea9929 feature/grids/geometry_functions

Remove review comments about output types.
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 17 Feb 2026 20:15:37 +0100
parents 8266acd4113f
children c68fa6c74477
files src/Grids/geometry.jl
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/Grids/geometry.jl	Tue Feb 17 20:07:05 2026 +0100
+++ b/src/Grids/geometry.jl	Tue Feb 17 20:15:37 2026 +0100
@@ -8,8 +8,6 @@
 
 # REVIEW:
 # 1.    Explain the parametrization, i.e., l(1) = p + s*t
-# 2.    Now, if p and t are ints, l(1) returns an int
-#       while l(0.5) returns a float. Is this intended/desirable?  
 """
     Line(p,t)
 
@@ -55,8 +53,6 @@
 
 # REVIEW:
 # 1.    Explain the parametrization.
-# 2.    Now, if a and b are ints, l(1) returns an int
-#       while l(0.5) returns a float. Is this intended/desirable?  
 # 3.    Do we want s in [0, 1]? Currently the line segment
 #       can return values "outside" of the interval [a,b].
 """