Files
IfcOpenShell/src/serializers/USDSerializer.h
T
2023-06-09 13:28:25 +02:00

55 lines
2.3 KiB
C++

/********************************************************************************
* *
* This file is part of IfcOpenShell. *
* *
* IfcOpenShell is free software: you can redistribute it and/or modify *
* it under the terms of the Lesser GNU General Public License as published by *
* the Free Software Foundation, either version 3.0 of the License, or *
* (at your option) any later version. *
* *
* IfcOpenShell 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 *
* Lesser GNU General Public License for more details. *
* *
* You should have received a copy of the Lesser GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
********************************************************************************/
#ifndef USDSERIALIZER_H
#define USDSERIALIZER_H
#ifdef WITH_USD
#include "../serializers/serializers_api.h"
#include "../ifcgeom_schema_agnostic/GeometrySerializer.h"
#include "pxr/pxr.h"
#include "pxr/usd/usd/stage.h"
class SERIALIZERS_API USDSerializer : public WriteOnlyGeometrySerializer {
private:
std::string filename_;
bool ready_ = false;
pxr::UsdStageRefPtr stage_;
int writeMaterial(const IfcGeom::Material& style);
void writeLighting();
public:
USDSerializer(const std::string&, const SerializerSettings&);
virtual ~USDSerializer();
bool ready();
void writeHeader();
void write(const IfcGeom::TriangulationElement*);
void write(const IfcGeom::BRepElement*) {}
void finalize();
bool isTesselated() const { return true; }
void setUnitNameAndMagnitude(const std::string&, float) {}
void setFile(IfcParse::IfcFile*) {}
};
#endif
#endif