godot/core/variant
reduz 455c06ecd4 Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.

* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.

These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.

**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-23 14:00:01 +02:00
..
array.cpp Clean up Hash Functions 2022-06-20 12:54:19 +02:00
array.h Add any() and all() methods to Array 2022-05-25 16:09:10 +02:00
binder_common.h Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
callable_bind.cpp Fix some issues found by cppcheck. 2022-04-06 14:34:37 +03:00
callable_bind.h Fix some issues found by cppcheck. 2022-04-06 14:34:37 +03:00
callable.cpp Fix the argcount when generating error message for CallableComparator 2022-07-18 00:57:20 +03:00
callable.h Add a const call mode to Object, Variant and Script. 2022-06-27 13:33:06 -07:00
container_type_validate.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
dictionary.cpp Clean up Hash Functions 2022-06-20 12:54:19 +02:00
dictionary.h Add Dictionary.merge() 2022-05-31 21:05:56 +02:00
method_ptrcall.h Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
native_ptr.h Create GDExtension clases for PhysicsServer3D 2022-03-15 18:39:31 +01:00
SCsub Reorganized core/ directory, it was too fatty already 2020-11-07 20:17:12 -03:00
type_info.h Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
typed_array.h Improve compilation speed (forward declarations/includes cleanup) 2022-02-12 02:46:22 +01:00
variant_call.cpp Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
variant_construct.cpp Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
variant_construct.h Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
variant_destruct.cpp Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
variant_destruct.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
variant_internal.h Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
variant_op.cpp Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
variant_op.h Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
variant_parser.cpp Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
variant_parser.h Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
variant_setget.cpp Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
variant_setget.h Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
variant_utility.cpp Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
variant.cpp Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00
variant.h Implement Vector4, Vector4i, Projection 2022-07-23 14:00:01 +02:00