pub struct ConformalMap {
pub source_domain: String,
pub target_domain: String,
pub description: String,
}Expand description
Conformal mapping: Riemann mapping theorem (abstract).
Fields§
§source_domain: String§target_domain: String§description: StringImplementations§
Source§impl ConformalMap
impl ConformalMap
pub fn new(source: &str, target: &str, desc: &str) -> Self
pub fn riemann_mapping(domain: &str) -> Self
pub fn upper_half_to_disk() -> Self
pub fn joukowski() -> Self
pub fn is_biholomorphic(&self) -> bool
Trait Implementations§
Source§impl Clone for ConformalMap
impl Clone for ConformalMap
Source§fn clone(&self) -> ConformalMap
fn clone(&self) -> ConformalMap
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ConformalMap
impl RefUnwindSafe for ConformalMap
impl Send for ConformalMap
impl Sync for ConformalMap
impl Unpin for ConformalMap
impl UnsafeUnpin for ConformalMap
impl UnwindSafe for ConformalMap
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more