1bec402cd9
- C3d aggiornamento delle librerie ( 117962).
45 lines
2.3 KiB
C++
45 lines
2.3 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
||
/**
|
||
\file
|
||
\brief \ru Методы построения каркаса.
|
||
\en Functions for wire frame creation. \~
|
||
*/
|
||
////////////////////////////////////////////////////////////////////////////////
|
||
|
||
#ifndef __ACTION_WIREFRAME_H
|
||
#define __ACTION_WIREFRAME_H
|
||
|
||
|
||
#include <wire_frame.h>
|
||
|
||
class MATH_CLASS MbWireFrameFilletsParams;
|
||
|
||
//------------------------------------------------------------------------------
|
||
/** \brief \ru Создать скругленный каркас.
|
||
\en Create a filleted wire frame. \~
|
||
\details \ru Создать каркас в виде плавного соединения (скругления) всех ребер каркаса. \n
|
||
Если два ребра в каркасе гладко стыкуются, в этом стыке скругление не делается, радиус игнорируется. \n
|
||
\en Create a wire frame as fillet of all the edges of a wire frame. \n
|
||
If two edges in wire frame are smoothly connected, the fillet is not created at this joint, the radius is ignored. \n \~
|
||
\param[in] wireframe - \ru Исходный каркас.
|
||
\en The initial wire frame. \~
|
||
\param[in] sameEdges - \ru Режим копирования входного каркаса.
|
||
\en Whether to copy the input wire frame. \~
|
||
\param[in] params - \ru Параметры скругления.
|
||
\en A fillet parameters. \~
|
||
\param[out] result - \ru Скругленный каркас.
|
||
\en The filleted wire frame. \~
|
||
\return \ru Возвращает код результата операции.
|
||
\en Returns operation result code. \~
|
||
\warning \ru В разработке.
|
||
\en Under development. \~
|
||
\ingroup WireFrame_Modeling
|
||
*/
|
||
// ---
|
||
MATH_FUNC( MbResultType ) CreateWireFrameFillets( c3d::WireFrameSPtr & wireframe,
|
||
MbeCopyMode sameEdges,
|
||
const MbWireFrameFilletsParams & params,
|
||
c3d::WireFrameSPtr & result );
|
||
|
||
#endif // __ACTION_WIREFRAME_H
|