Index

C++ Code Documentation

klab::kernel::Sym

File: LAB/klab/kernel/Sym.H

Computes the surface position by the Sym-Bobenko formula. Parameters: X (output) F (input) lambda (input) polylen (input) The sym formula is: f = ( (I lambda) dF/d(lambda) F^(-1) and F, F^(-1), and dF/dt are evaluated at some real-valued lambda

public:
  • Sym();
    void constructor
  • virtual ~Sym();
    destructor
  • void compute( math::Vector3<Real> &f, Loop4 const &F, std::complex<Real> const &lambda );
    Sym-Bobenko formula: computes the surface normal and metric.
protected:
private:
  • math::complex4<Real> e3;
  • Sym( Sym const & );
    disabled copy constructor
  • Sym &operator=( Sym const & );
    disabled assignment operator


klab::kernel::Sym GANG