mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-26 05:50:32 +05:00
Fix number of parameters in EllipticCone
This commit is contained in:
parent
390ab5f4b9
commit
9510670140
@ -1540,7 +1540,7 @@ Primitive * EllipticCone :: CreateDefault ()
|
|||||||
void EllipticCone :: GetPrimitiveData (const char *& classname, NgArray<double> & coeffs) const
|
void EllipticCone :: GetPrimitiveData (const char *& classname, NgArray<double> & coeffs) const
|
||||||
{
|
{
|
||||||
classname = "ellipticcone";
|
classname = "ellipticcone";
|
||||||
coeffs.SetSize (15);
|
coeffs.SetSize (11);
|
||||||
coeffs.Elem(1) = a(0);
|
coeffs.Elem(1) = a(0);
|
||||||
coeffs.Elem(2) = a(1);
|
coeffs.Elem(2) = a(1);
|
||||||
coeffs.Elem(3) = a(2);
|
coeffs.Elem(3) = a(2);
|
||||||
|
Loading…
Reference in New Issue
Block a user