Mathc initiation/Fichiers h : x 68a5
Installer ce fichier dans votre répertoire de travail.
x_dz.h |
---|
/* ---------------------------------- */
/* save as x_dz.h */
/* ---------------------------------- */
double implicitDz_x(
double (*P_f)(double x, double y, double z),
double h,
pt3d p
)
{
return(- fxyz_x((*P_f),h,p)
/
fxyz_z((*P_f),h,p));
}
/* ---------------------------------- */
double implicitDz_y(
double (*P_f)(double x, double y, double z),
double h,
pt3d p
)
{
return(- fxyz_y((*P_f),h,p)
/
fxyz_z((*P_f),h,p));
}
/* ---------------------------------- */
/* ---------------------------------- */
Déclaration des fichiers h.