001/**
002 * Copyright (c) 2008-2014 Ardor Labs, Inc.
003 *
004 * This file is part of Ardor3D.
005 *
006 * Ardor3D is free software: you can redistribute it and/or modify it 
007 * under the terms of its license which may be found in the accompanying
008 * LICENSE file or at <http://www.ardor3d.com/LICENSE>.
009 */
010
011package com.ardor3d.extension.model.util.nvtristrip;
012
013/**
014 * Ported from <a href="http://developer.nvidia.com/object/nvtristrip_library.html">NVIDIA's NvTriStrip Library</a>
015 */
016final class NvStripStartInfo {
017    NvFaceInfo _startFace;
018    NvEdgeInfo _startEdge;
019    boolean _toV1;
020
021    NvStripStartInfo(final NvFaceInfo startFace, final NvEdgeInfo startEdge, final boolean toV1) {
022        _startFace = startFace;
023        _startEdge = startEdge;
024        _toV1 = toV1;
025    }
026}