2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2012 Blender Authors
|
2023-05-31 16:19:06 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-11-14 19:53:46 +00:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "COM_Node.h"
|
|
|
|
|
#include "DNA_node_types.h"
|
2021-03-23 17:12:27 +01:00
|
|
|
|
|
|
|
|
namespace blender::compositor {
|
|
|
|
|
|
2012-11-14 19:53:46 +00:00
|
|
|
/**
|
2018-09-05 14:56:29 +10:00
|
|
|
* \brief MapRangeNode
|
|
|
|
|
* \ingroup Node
|
2012-11-14 19:53:46 +00:00
|
|
|
*/
|
|
|
|
|
class MapRangeNode : public Node {
|
|
|
|
|
public:
|
2021-10-13 23:01:15 +02:00
|
|
|
MapRangeNode(bNode *editor_node);
|
|
|
|
|
void convert_to_operations(NodeConverter &converter,
|
|
|
|
|
const CompositorContext &context) const override;
|
2012-11-14 19:53:46 +00:00
|
|
|
};
|
2021-03-23 17:12:27 +01:00
|
|
|
|
|
|
|
|
} // namespace blender::compositor
|