File: MeshIterator.cpp

package info (click to toggle)
siril 1.4.0~rc2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 47,352 kB
  • sloc: ansic: 174,082; cpp: 28,254; python: 7,891; makefile: 974; xml: 777; sh: 271
file content (15 lines) | stat: -rw-r--r-- 317 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#include "MeshIterator.h"

#include "HTMesh.h"
#include "MeshBuffer.h"

#include <iostream>

MeshIterator::MeshIterator(HTMesh *mesh, BufNum bufNum)
{
    cnt                = 0;
    MeshBuffer *buffer = mesh->meshBuffer(bufNum);
    m_size             = buffer->size();
    index              = buffer->buffer();
}