| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef PCVCOMMAND_H
- #define PCVCOMMAND_H
- //##########################################################################
- //# #
- //# CLOUDCOMPARE PLUGIN #
- //# #
- //# This program is free software; you can redistribute it and/or modify #
- //# it under the terms of the GNU General Public License as published by #
- //# the Free Software Foundation; version 2 of the License. #
- //# #
- //# This program is distributed in the hope that it will be useful, #
- //# but WITHOUT ANY WARRANTY; without even the implied warranty of #
- //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
- //# GNU General Public License for more details. #
- //# #
- //# COPYRIGHT: CloudCompare project #
- //# #
- //##########################################################################
- #include "ccCommandLineInterface.h"
- class ccProgressDialog;
- class ccMainAppInterface;
- //qCC_db
- #include <ccHObject.h>
- class PCVCommand : public ccCommandLineInterface::Command
- {
- public:
- PCVCommand();
- ~PCVCommand() override = default;
- static bool Process( const ccHObject::Container& candidates,
- const std::vector<CCVector3>& rays,
- bool meshIsClosed,
- unsigned resolution,
- ccProgressDialog* progressDlg = nullptr,
- ccMainAppInterface* app = nullptr);
- bool process(ccCommandLineInterface& cmd) override;
- };
- #endif
|