Skip to content

Commit 301bcff

Browse files
authored
Change spellings (#150)
1 parent ab712c7 commit 301bcff

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

src/specializations/BezierCurve.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Like [`integral`](@ref) but integrates along the domain defined by `curve`.
2727
- `diff_method::DifferentiationMethod = Analytical()`: the method to use for
2828
calculating Jacobians that are used to calculate differential elements
2929
- `FP = Float64`: the floating point precision desired
30-
- `alg = Meshes.Horner()`: the method to use for parameterizing `curve`. Alternatively,
30+
- `alg = Meshes.Horner()`: the method to use for parametrizing `curve`. Alternatively,
3131
`alg=Meshes.DeCasteljau()` can be specified for increased accuracy, but comes with a
3232
steep performance cost, especially for curves with a large number of control points.
3333
"""

src/specializations/ConeSurface.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Why Specialized?
55
# The parametric function that Meshes.jl currently implements for ConeSurface
6-
# only parameterizes the rounded walls of the cone, but this Geometry surface is
6+
# only parametrizes the rounded walls of the cone, but this Geometry surface is
77
# defined as including the circular base surface as well. These methods simply
88
# integrate both the base and walls and return the sum of the two integrals.
99
################################################################################
@@ -14,7 +14,7 @@ function integral(
1414
rule::I;
1515
kwargs...
1616
) where {I <: IntegrationRule}
17-
# The generic method only parameterizes the sides
17+
# The generic method only parametrizes the sides
1818
sides = _integral(f, cone, rule; kwargs...)
1919

2020
# Integrate the Disk at the base

src/specializations/CylinderSurface.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Why Specialized?
55
# The parametric function that Meshes.jl currently implements for CylinderSurface
6-
# only parameterizes the rounded walls, but this Geometry surface is defined as
6+
# only parametrizes the rounded walls, but this Geometry surface is defined as
77
# including the top and bottom circular base surfaces as well. These methods
88
# simply integrate the base and walls and return the sum of the three integrals.
99
################################################################################
@@ -14,7 +14,7 @@ function integral(
1414
rule::I;
1515
kwargs...
1616
) where {I <: IntegrationRule}
17-
# The generic method only parameterizes the sides
17+
# The generic method only parametrizes the sides
1818
sides = _integral(f, cyl, rule; kwargs...)
1919

2020
# Integrate the Disk at the top

src/specializations/FrustumSurface.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Why Specialized?
55
# The parametric function that Meshes.jl currently implements for FrustumSurface
6-
# only parameterizes the rounded walls, but this Geometry surface is defined as
6+
# only parametrizes the rounded walls, but this Geometry surface is defined as
77
# including the truncated top and bottom surfaces as well. These methods simply
88
# integrate both the walls and the ends and return the sum of the these integrals.
99
################################################################################
@@ -14,7 +14,7 @@ function integral(
1414
rule::I;
1515
kwargs...
1616
) where {I <: IntegrationRule}
17-
# The generic method only parameterizes the sides
17+
# The generic method only parametrizes the sides
1818
sides = _integral(f, frust, rule; kwargs...)
1919

2020
# Integrate the Disks at the top and bottom

test/combinations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ end
545545
if pkgversion(Meshes) >= v"0.51.20"
546546
using CoordRefSystems: Polar
547547

548-
# Parameterize a circle centered on origin with specified radius
548+
# Parametrize a circle centered on origin with specified radius
549549
radius = 4.4
550550
curve_cart = ParametrizedCurve(
551551
t -> Point(radius * cos(t), radius * sin(t)), (0.0, 2π))

0 commit comments

Comments
 (0)