pw_graphics: Small module refactors

Add bazel and cmake build files for many modules.
Rename pw_math to pw_geometry.
Small updates to formatting and style.

Change-Id: Icbc27a67f9b971c533907c80f9b7d13f186a8e16
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/experimental/+/202871
Reviewed-by: Taylor Cramer <cramertj@google.com>
Presubmit-Verified: CQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>
Commit-Queue: Anthony DiGirolamo <tonymd@google.com>
diff --git a/pw_graphics/pw_framebuffer/framebuffer.cc b/pw_graphics/pw_framebuffer/framebuffer.cc
index 531b685..8a5ff43 100644
--- a/pw_graphics/pw_framebuffer/framebuffer.cc
+++ b/pw_graphics/pw_framebuffer/framebuffer.cc
@@ -1,4 +1,4 @@
-// Copyright 2022 The Pigweed Authors
+// Copyright 2024 The Pigweed Authors
 //
 // Licensed under the Apache License, Version 2.0 (the "License"); you may not
 // use this file except in compliance with the License. You may obtain a copy of
@@ -27,7 +27,7 @@
 
 Framebuffer::Framebuffer(void* data,
                          PixelFormat pixel_format,
-                         pw::math::Size<uint16_t> size,
+                         pw::geometry::Size<uint16_t> size,
                          uint16_t row_bytes)
     : pixel_data_(data),
       pixel_format_(pixel_format),