47 lines
2.4 KiB
C++
Executable File
47 lines
2.4 KiB
C++
Executable File
/****************************************************************************
|
|
* JMeshExt *
|
|
* *
|
|
* Consiglio Nazionale delle Ricerche *
|
|
* Istituto di Matematica Applicata e Tecnologie Informatiche *
|
|
* Sezione di Genova *
|
|
* IMATI-GE / CNR *
|
|
* *
|
|
* Authors: Marco Attene *
|
|
* *
|
|
* Copyright(C) 2006: IMATI-GE / CNR *
|
|
* *
|
|
* All rights reserved. *
|
|
* *
|
|
* 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 (http://www.gnu.org/licenses/gpl.txt) *
|
|
* for more details. *
|
|
* *
|
|
****************************************************************************/
|
|
|
|
#ifndef HOLE_FILLING_H
|
|
#define HOLE_FILLING_H
|
|
|
|
#include "exttrimesh.h"
|
|
#include "matrix.h"
|
|
#include "sparseLSystem.h"
|
|
|
|
// Sparse linear system
|
|
class fs_sparseSystem : public sparseSystem
|
|
{
|
|
public:
|
|
|
|
fs_sparseSystem(int s) : sparseSystem(s, 3) {}
|
|
|
|
// The following calls 'solve' three times and fills the vertex list with x, y, z results
|
|
void solve(List *);
|
|
};
|
|
|
|
#endif // HOLE_FILLING_H
|