Lagrange
Loading...
Searching...
No Matches
GeodesicEngineHeat.h
1/*
2 * Copyright 2025 Adobe. All rights reserved.
3 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License. You may obtain a copy
5 * of the License at http://www.apache.org/licenses/LICENSE-2.0
6 *
7 * Unless required by applicable law or agreed to in writing, software distributed under
8 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9 * OF ANY KIND, either express or implied. See the License for the specific language
10 * governing permissions and limitations under the License.
11 */
12#pragma once
13
14#include <lagrange/geodesic/GeodesicEngine.h>
15
16namespace lagrange::geodesic {
17
26template <typename Scalar, typename Index>
27class GeodesicEngineHeat : public GeodesicEngine<Scalar, Index>
28{
29public:
31 using Mesh = typename Super::Mesh;
32
33public:
39 explicit GeodesicEngineHeat(Mesh& mesh);
40
41 virtual ~GeodesicEngineHeat();
45 GeodesicEngineHeat& operator=(const GeodesicEngineHeat&) = delete;
46
62 const SingleSourceGeodesicOptions& options) override;
63
64protected:
65 struct Impl;
67};
68
79template <typename Scalar, typename Index>
81{
83}
84
85} // namespace lagrange::geodesic
A general purpose polygonal mesh class.
Definition SurfaceMesh.h:66
Computes surface geodesics using the heat method.
Definition GeodesicEngineHeat.h:28
typename Super::Mesh Mesh
The mesh type.
Definition GeodesicEngineHeat.h:31
SingleSourceGeodesicResult single_source_geodesic(const SingleSourceGeodesicOptions &options) override
Compute single source geodesic distances using the heat method.
Definition GeodesicEngineHeat.cpp:65
GeodesicEngineHeat(Mesh &mesh)
Precompute any data required for repeated geodesic distance computation.
Definition GeodesicEngineHeat.cpp:45
GeodesicEngine< Scalar, Index > Super
Parent class type.
Definition GeodesicEngineHeat.h:30
GeodesicEngine(Mesh &mesh)
Base class constructor.
Definition GeodesicEngine.cpp:20
SurfaceMesh< Scalar, Index > Mesh
The mesh type.
Definition GeodesicEngine.h:106
Smart pointer with value semantics.
Definition value_ptr.h:134
Definition GeodesicEngineHeat.cpp:38
General options for one-to-many geodesic computations.
Definition GeodesicEngine.h:25
Result of a single source geodesic computation.
Definition GeodesicEngine.h:65