https://hal.archives-ouvertes.fr/hal-02398953
Raw File
Tip revision: c33910a29d53f4e137c225b21a8d59e43327cbf9 authored by Software Heritage on 08 December 2019, 12:26:32 UTC
hal: Deposit 351 in collection hal
Tip revision: c33910a
ridge.cpp
#include "ridge.h"
#include <cmath>
#include <iostream>
#include <string>

using namespace std;
using namespace giac;

ridge::ridge(){
};

ostream & operator<<(ostream &out, const ridge &r)
{
  out << convertword(r.faceindices) ;
  return out;
} 
back to top