Fusion360-Addons/usr/autodesk/CPP/include/Fusion/BRep/BRepEdgeDefinition.h
2021-10-31 19:11:02 +01:00

149 lines
5.1 KiB
C++

//////////////////////////////////////////////////////////////////////////////
//
// Copyright 2016 Autodesk, Inc. All rights reserved.
//
// Use of this software is subject to the terms of the Autodesk license
// agreement provided at the time of installation or download, or which
// otherwise accompanies this software.
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
#include "../../Core/Base.h"
#include "../FusionTypeDefs.h"
// THIS CLASS WILL BE VISIBLE TO AN API CLIENT.
// THIS HEADER FILE WILL BE GENERATED FROM NIDL.
#include "../../Core/OSMacros.h"
#ifdef FUSIONXINTERFACE_EXPORTS
# ifdef __COMPILING_ADSK_FUSION_BREPEDGEDEFINITION_CPP__
# define ADSK_FUSION_BREPEDGEDEFINITION_API XI_EXPORT
# else
# define ADSK_FUSION_BREPEDGEDEFINITION_API
# endif
#else
# define ADSK_FUSION_BREPEDGEDEFINITION_API XI_IMPORT
#endif
namespace adsk { namespace fusion {
class BRepVertexDefinition;
}}
namespace adsk { namespace core {
class Curve3D;
}}
namespace adsk { namespace fusion {
/// Represents the definition of a B-Rep edge that can be used as input to create a BRepBody.
class BRepEdgeDefinition : public core::Base {
public:
/// Gets and sets the associate ID of this edge definition. This ID will be copied to the corresponding
/// edge when the BRepBodyDefinition is used to create a BrepBody. It is used internally by Fusion360 as
/// the identifier for the edge and is used for tracking this geometry for parametric recomputes.
int associativeID() const;
bool associativeID(int value);
/// Gets and sets the start vertex of the edge definition.
core::Ptr<BRepVertexDefinition> startVertex() const;
bool startVertex(const core::Ptr<BRepVertexDefinition>& value);
/// Gets and sets the end vertex of the edge definition.
core::Ptr<BRepVertexDefinition> endVertex() const;
bool endVertex(const core::Ptr<BRepVertexDefinition>& value);
/// Gets and sets the curve that defines the shape of the edge.
core::Ptr<core::Curve3D> modelSpaceCurve() const;
bool modelSpaceCurve(const core::Ptr<core::Curve3D>& value);
/// Gets and sets if the two faces that share this edge can be merged along this
/// edge. This property defaults to true so that merging is always done but this
/// can be set to false in cases where you want to preserve the edge.
/// An example where merging is typically done is when you have multiple planar
/// faces that all lie on the same plane and are connected. When merging is allowed
/// these faces can be replaced by a single face and the edges connecting the
/// faces (the merged edges) are no longer part of the body.
bool isMergeable() const;
bool isMergeable(bool value);
ADSK_FUSION_BREPEDGEDEFINITION_API static const char* classType();
ADSK_FUSION_BREPEDGEDEFINITION_API const char* objectType() const override;
ADSK_FUSION_BREPEDGEDEFINITION_API void* queryInterface(const char* id) const override;
ADSK_FUSION_BREPEDGEDEFINITION_API static const char* interfaceId() { return classType(); }
private:
// Raw interface
virtual int associativeID_raw() const = 0;
virtual bool associativeID_raw(int value) = 0;
virtual BRepVertexDefinition* startVertex_raw() const = 0;
virtual bool startVertex_raw(BRepVertexDefinition* value) = 0;
virtual BRepVertexDefinition* endVertex_raw() const = 0;
virtual bool endVertex_raw(BRepVertexDefinition* value) = 0;
virtual core::Curve3D* modelSpaceCurve_raw() const = 0;
virtual bool modelSpaceCurve_raw(core::Curve3D* value) = 0;
virtual bool isMergeable_raw() const = 0;
virtual bool isMergeable_raw(bool value) = 0;
};
// Inline wrappers
inline int BRepEdgeDefinition::associativeID() const
{
int res = associativeID_raw();
return res;
}
inline bool BRepEdgeDefinition::associativeID(int value)
{
return associativeID_raw(value);
}
inline core::Ptr<BRepVertexDefinition> BRepEdgeDefinition::startVertex() const
{
core::Ptr<BRepVertexDefinition> res = startVertex_raw();
return res;
}
inline bool BRepEdgeDefinition::startVertex(const core::Ptr<BRepVertexDefinition>& value)
{
return startVertex_raw(value.get());
}
inline core::Ptr<BRepVertexDefinition> BRepEdgeDefinition::endVertex() const
{
core::Ptr<BRepVertexDefinition> res = endVertex_raw();
return res;
}
inline bool BRepEdgeDefinition::endVertex(const core::Ptr<BRepVertexDefinition>& value)
{
return endVertex_raw(value.get());
}
inline core::Ptr<core::Curve3D> BRepEdgeDefinition::modelSpaceCurve() const
{
core::Ptr<core::Curve3D> res = modelSpaceCurve_raw();
return res;
}
inline bool BRepEdgeDefinition::modelSpaceCurve(const core::Ptr<core::Curve3D>& value)
{
return modelSpaceCurve_raw(value.get());
}
inline bool BRepEdgeDefinition::isMergeable() const
{
bool res = isMergeable_raw();
return res;
}
inline bool BRepEdgeDefinition::isMergeable(bool value)
{
return isMergeable_raw(value);
}
}// namespace fusion
}// namespace adsk
#undef ADSK_FUSION_BREPEDGEDEFINITION_API