Skip to content

Commit

Permalink
Fixed math error: transln of symmetry group vector
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewGibbs committed Nov 9, 2023
1 parent 5776719 commit c54b25f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fractal_manipulations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function +(s::Similarity, v::AbstractVector{<:Real})# where {V<:Union{Real,Abstr
s.rA) # scale*rotation/reflection (same)
end

+(AM::AutomorphicMap, v::AbstractVector{<:Real}) = AutomorphicMap(AM.A,AM.δ+v)
+(AM::AutomorphicMap, v::AbstractVector{<:Real}) = AutomorphicMap(AM.A,-AM.A*v+AM.δ+v)

function +::InvariantMeasure{V,M}, v::AbstractVector{<:Real}
) where {V<:Union{Real,AbstractVector}, M<:Union{Real,AbstractMatrix}}
Expand Down

0 comments on commit c54b25f

Please sign in to comment.