2021-06-09 19:22:10 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
|
|
|
|
|
#include "TargetInterfaces/DynamicMeshCommitter.h"
|
|
|
|
|
|
|
|
|
|
#include "GeometryBase.h"
|
|
|
|
|
|
|
|
|
|
PREDECLARE_GEOMETRY(class FDynamicMesh3);
|
|
|
|
|
class IMeshDescriptionCommitter;
|
|
|
|
|
class IMeshDescriptionProvider;
|
2021-12-06 18:12:59 -05:00
|
|
|
struct FMeshDescription;
|
2021-06-09 19:22:10 -04:00
|
|
|
|
|
|
|
|
namespace UE {
|
|
|
|
|
namespace Geometry {
|
|
|
|
|
|
2021-11-24 23:55:31 -05:00
|
|
|
MODELINGCOMPONENTS_API FDynamicMesh3 GetDynamicMeshViaMeshDescription(
|
2021-06-09 19:22:10 -04:00
|
|
|
IMeshDescriptionProvider& MeshDescriptionProvider);
|
|
|
|
|
|
2021-12-06 12:42:19 -05:00
|
|
|
MODELINGCOMPONENTS_API void CommitDynamicMeshViaMeshDescription(
|
|
|
|
|
FMeshDescription&& CurrentMeshDescription,
|
|
|
|
|
IMeshDescriptionCommitter& MeshDescriptionCommitter,
|
|
|
|
|
const UE::Geometry::FDynamicMesh3& Mesh,
|
|
|
|
|
const IDynamicMeshCommitter::FDynamicMeshCommitInfo& CommitInfo);
|
2021-06-09 19:22:10 -04:00
|
|
|
|
|
|
|
|
}}
|