#include <src/libigl/igl/matlab/MexStream.h>
|
| virtual std::streamsize | xsputn (const char *s, std::streamsize n) |
| |
| virtual int | overflow (int c=EOF) |
| |
◆ overflow()
| int igl::matlab::MexStream::overflow |
( |
int |
c = EOF | ) |
|
|
inlineprotectedvirtual |
49{
50 if (c != EOF) {
51 mexPrintf("%.1s",&c);
52 mexEvalString("drawnow;");
53 }
54 return 1;
55}
◆ xsputn()
| std::streamsize igl::matlab::MexStream::xsputn |
( |
const char * |
s, |
|
|
std::streamsize |
n |
|
) |
| |
|
inlineprotectedvirtual |
42{
43 mexPrintf("%.*s",n,s);
44 mexEvalString("drawnow;");
45 return n;
46}
The documentation for this class was generated from the following file: