www.pudn.com > sources_4610.rar > Art_Speaker.h
/* Art_Speaker.h * * Copyright (C) 1992-2002 Paul Boersma * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * pb 1996/04/09 * pb 2002/07/16 GPL */ #ifndef _Articulation_h_ #include "Articulation.h" #endif #ifndef _Speaker_h_ #include "Speaker.h" #endif #ifndef _Graphics_h_ #include "Graphics.h" #endif void Art_Speaker_toVocalTract (Art art, Speaker speaker, double intX [], double intY [], double extX [], double extY [], double *bodyX, double *bodyY); /* Function: compute key places of the supralaryngeal vocal tract. Preconditions: index intX [1..13]; index intY [1..13]; index extX [1..9]; index extY [1..9]; Postconditions: int [1..6] is anterior larynx, hyoid, and tongue root. int [6..7] is the arc of the tongue body. int [7..13] is tongue blade, lower teeth, and lower lip. ext [1..5] is posterior larynx, back pharynx wall, and velic. ext [5..6] is the arc of the velum and palate. ext [6..9] is the gums, upper teeth and upper lip. */ void Art_Speaker_draw (Art art, Speaker speaker, Graphics g); void Art_Speaker_fillInnerContour (Art art, Speaker speaker, Graphics g); void Art_Speaker_meshVocalTract (Art art, Speaker speaker, double xi [], double yi [], double xe [], double ye [], double xmm [], double ymm [], int closed []); void Art_Speaker_drawMesh (Art art, Speaker speaker, Graphics g); /* End of file Art_Speaker.h */