Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2025.1.0 - Français


nf3d

conversion de facettes pour plot3d

Séquence d'appel

[xx,yy,zz]=nf3d(x,y,z)

Paramètres

x,y,x,xx,yy,zz

6 matrices réelles

Description

Fonction utilitaire utilisée pour convertir des facettes codées dans trois matrices x,y,z (format plot3d2) dans un format accepté par plot3d.

Exemples

// Une sphère...
[x, y, z] = sphere([20, 40]);
// plot3d2(x,y,z) est équivalent à ...
[xx,yy,zz]=nf3d(x,y,z); plot3d(xx,yy,zz);

Voir aussi

  • plot3d — 3D plot of a surface
  • plot3d2 — plot surface defined by rectangular facets
Report an issue
<< mesh 3d_plot param3d >>

Copyright (c) 2022-2024 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu May 22 12:54:25 CEST 2025