JuliaApproximation / DomainSets.jl

A Julia package for describing domains as continuous sets of elements
MIT License
72 stars 12 forks source link

Complex plane unit circle and disk #77

Closed daanhb closed 3 years ago

daanhb commented 3 years ago

To address #1:

julia> using DomainSets

julia> C = ComplexUnitCircle()
the complex unit circle (T=Complex{Float64})

julia> 1 ∈ C
true

julia> 1im ∈ C
true

julia> D = ComplexUnitDisk()
the complex unit disk (T=Complex{Float64})

julia> 0.5 + 0.2im ∈ D
true
codecov[bot] commented 3 years ago

Codecov Report

Merging #77 (48b0648) into master (b24e705) will increase coverage by 0.13%. The diff coverage is 100.00%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master      #77      +/-   ##
==========================================
+ Coverage   73.54%   73.67%   +0.13%     
==========================================
  Files          25       25              
  Lines        1187     1193       +6     
==========================================
+ Hits          873      879       +6     
  Misses        314      314              
Impacted Files Coverage Δ
src/DomainSets.jl 100.00% <ø> (ø)
src/domains/ball.jl 79.06% <100.00%> (+1.56%) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update b24e705...48b0648. Read the comment docs.