#include <cmath>
#include <functional>
#include <initializer_list>
#include <memory>
#include <optional>
#include <utility>
#include <vector>
#include "copp/core.hpp"
Go to the source code of this file.
|
| namespace | copp |
| | Root namespace for the C++ facade: paths, robots, constraints, matrices, profiles, errors, objectives, interpolation, and solver entry points.
|
| namespace | copp::detail |
| | Internal helpers for error conversion, no-throw overloads, and small implementation utilities used by the public facade.
|
|
| COPP_API const void * | copp::detail::path_handle (const Path &path) noexcept |
| | Return the private bridge handle stored by Path.
|
| constexpr Jet3 | copp::operator+ (Jet3 lhs, Jet3 rhs) noexcept |
| constexpr Jet3 | copp::operator+ (Jet3 lhs, double rhs) noexcept |
| constexpr Jet3 | copp::operator+ (double lhs, Jet3 rhs) noexcept |
| constexpr Jet3 | copp::operator- (Jet3 lhs, Jet3 rhs) noexcept |
| constexpr Jet3 | copp::operator- (Jet3 lhs, double rhs) noexcept |
| constexpr Jet3 | copp::operator- (double lhs, Jet3 rhs) noexcept |
| constexpr Jet3 | copp::operator- (Jet3 value) noexcept |
| constexpr Jet3 | copp::operator* (Jet3 lhs, Jet3 rhs) noexcept |
| constexpr Jet3 | copp::operator* (Jet3 lhs, double rhs) noexcept |
| constexpr Jet3 | copp::operator* (double lhs, Jet3 rhs) noexcept |
| Jet3 | copp::operator/ (double lhs, Jet3 rhs) noexcept |
| constexpr Jet3 | copp::operator/ (Jet3 lhs, double rhs) noexcept |
| Jet3 | copp::operator/ (Jet3 lhs, Jet3 rhs) noexcept |
| Jet3 | copp::sin (Jet3 x) noexcept |
| Jet3 | copp::cos (Jet3 x) noexcept |
| Jet3 | copp::exp (Jet3 x) noexcept |
| Jet3 | copp::log (Jet3 x) noexcept |
| Jet3 | copp::ln (Jet3 x) noexcept |
| Jet3 | copp::sqrt (Jet3 x) noexcept |
| Jet3 | copp::powi (Jet3 x, int n) noexcept |