vsg 1.1.3
VulkanSceneGraph library
Loading...
Searching...
No Matches
Layer.h
1#pragma once
2
3/* <editor-fold desc="MIT License">
4
5Copyright(c) 2024 Robert Osfield
6
7Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8
9The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10
11THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12
13</editor-fold> */
14
15#include <vsg/maths/sphere.h>
16#include <vsg/nodes/Node.h>
17
18namespace vsg
19{
20
22 class VSG_DECLSPEC Layer : public Inherit<Node, Layer>
23 {
24 public:
25 Layer();
26 Layer(const Layer& rhs, const CopyOp& copyop = {});
27 Layer(int32_t in_binNumber, double value, ref_ptr<Node> in_child);
28
29 Mask mask = MASK_ALL;
30 int32_t binNumber = 0;
31 double value = 0.0;
32 ref_ptr<Node> child;
33
34 public:
35 ref_ptr<Object> clone(const CopyOp& copyop = {}) const override { return Layer::create(*this, copyop); }
36 int compare(const Object& rhs) const override;
37
38 void traverse(Visitor& visitor) override
39 {
40 if ((visitor.traversalMask & (visitor.overrideMask | mask)) != MASK_OFF) child->accept(visitor);
41 }
42 void traverse(ConstVisitor& visitor) const override
43 {
44 if ((visitor.traversalMask & (visitor.overrideMask | mask)) != MASK_OFF) child->accept(visitor);
45 }
46 void traverse(RecordTraversal& visitor) const override
47 {
48 if ((visitor.traversalMask & (visitor.overrideMask | mask)) != MASK_OFF) child->accept(visitor);
49 }
50
51 void read(Input& input) override;
52 void write(Output& output) const override;
53
54 protected:
55 virtual ~Layer();
56 };
57 VSG_type_name(vsg::Layer);
58
59} // namespace vsg
Definition ConstVisitor.h:172
Definition Object.h:42
Definition Inherit.h:28
Layer node is used to control which bin to place the subgraph in and what sort value to assign.
Definition Layer.h:23
ref_ptr< Object > clone(const CopyOp &copyop={}) const override
Definition Layer.h:35
int compare(const Object &rhs) const override
compare two objects, return -1 if this object is less than rhs, return 0 if it's equal,...
Definition Object.h:60
Definition Visitor.h:172
Definition ref_ptr.h:22