VTK  9.7.20260805
vtkFloatArray.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
17
18#ifndef vtkFloatArray_h
19#define vtkFloatArray_h
20
21#include "vtkAOSDataArrayTemplate.h" // Real Superclass
22#include "vtkCommonCoreModule.h" // For export macro
23#include "vtkDataArray.h"
24
25// Fake the superclass for non-Python wrappers.
26// Python can handle the templated superclass; Java and others cannot.
27#if !defined(__VTK_WRAP__) || defined(__VTK_WRAP_PYTHON__) || defined(__VTK_WRAP_HIERARCHY__)
28#define vtkDataArray vtkAOSDataArrayTemplate<float>
29#endif
30VTK_ABI_NAMESPACE_BEGIN
31class VTKCOMMONCORE_EXPORT vtkFloatArray : public vtkDataArray
32{
33public:
35#if !defined(__VTK_WRAP__) || defined(__VTK_WRAP_PYTHON__) || defined(__VTK_WRAP_HIERARCHY__)
36#undef vtkDataArray
37#endif
38
39 static vtkFloatArray* New();
41 void PrintSelf(ostream& os, vtkIndent indent) override;
42
43 // This macro expands to the set of method declarations that
44 // make up the interface of vtkAOSDataArrayTemplate, which is ignored
45 // by the wrappers.
46#if (defined(__VTK_WRAP__) || defined(__WRAP_GCCXML__)) && !defined(__VTK_WRAP_PYTHON__)
48#endif
49
57
58protected:
60 ~vtkFloatArray() override;
61
62private:
63 typedef vtkAOSDataArrayTemplate<float> RealSuperclass;
64
65 vtkFloatArray(const vtkFloatArray&) = delete;
66 void operator=(const vtkFloatArray&) = delete;
67};
68
69// Define vtkArrayDownCast implementation:
71
72VTK_ABI_NAMESPACE_END
73#endif
Abstract superclass for all arrays.
static vtkDataArray * FastDownCast(vtkAbstractArray *source)
Perform a fast, safe cast from a vtkAbstractArray to a vtkDataArray.
dynamic, self-adjusting array of float
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkFloatArray * FastDownCast(vtkAbstractArray *source)
A faster alternative to SafeDownCast for downcasting vtkAbstractArrays.
static vtkFloatArray * New()
~vtkFloatArray() override
static vtkFloatArray * ExtendedNew()
a simple class to control print indentation
Definition vtkIndent.h:29
#define vtkCreateWrappedArrayInterface(T)
#define vtkArrayDownCast_FastCastMacro(ArrayT)
This macro is used to tell vtkArrayDownCast to use FastDownCast instead of SafeDownCast.
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
#define vtkDataArray