Computer Graphics
Meet other local people interested in Computer Graphics: share experiences, inspire and encourage each other! Join a Computer Graphics group.
11,338
members
9
groups
Largest Computer Graphics groups
Newest Computer Graphics groups
Frequently Asked Questions
Yes! Check out computer graphics events happening today here. These are in-person gatherings where you can meet fellow enthusiasts and participate in activities right now.
Discover all the computer graphics events taking place this week here. Plan ahead and join exciting meetups throughout the week.
Absolutely! Find computer graphics events near your location here. Connect with your local community and discover events within your area.
Computer Graphics Events Today
Join in-person Computer Graphics events happening right now
AI Builders London
Register: [https://luma.com/london-mar5](https://luma.com/london-mar5)
**Join our meetup for AI nerds, engineers & founders!**
We share the latest insights about: *AI dev tools, Agent frameworks, RAG, vibe coding, and more!*
\*\*// FOR WHO\*\*
✅ Devs, Product peeps, Data lovers, ML engineers, Founders
✅ Anyone building with AI
⚠️ Some LLM knowledge required!\*
Neo4j Session:
**Living in an Agentic World (model) by Andreas Kollegger**
What if we onboarded AI agents the same way we onboard employees? That's the key insight of "context graphs" - giving agents access to why decisions are made improves their performance.
This leads to \*Agentic World Models\*: the convergence point where agent memory, knowledge graphs, and context graphs meet. Agents discover written policies and unwritten tribal knowledge, learn formal org structures and informal influence networks, and capture the \*decision traces\* that explain not just what happened, but why it was the right call.
We'll cover:
\- how to capture decisions traces
\- how to query the context graph when making decisions
\- a demo of what this looks like
Together, we'll put context in context.
Monument and Movement - Draw in the British Museum
\- Meet at 10:30 on the seats near the information desk in the Great Court\.
\- Individual tuition with helpful step by step explanations\, demonstrations as you draw in the galleries\.
\- Share your work with other students in the cafe are of the Great Court\, located nest to the Sainsbury Exhibitions Gallery\.
The British Museum houses sculptures from many different cultures, many of which are from elaborate monuments. Some have powerful and moving static presence, and others a lively sense of movement.
\- Understand the role statics and dynamics in the making of a drawing
\- Practise techniques for aligning forms and sensing proportions
\- Use a variety of lines and tones
\- Respond to the flow of rhythm
Philosophy Session/discussion, open for all!
These fortnightly sessions are dedicated to the discussion and exploration of an idea that I, as the organiser, have planned. No prior reading or knowledge is required.
For more information, please visit https://www.think-philosophy.group/about/
Philosophies of East & West - First Evening
**This is a ticketed event for £10, purchases available at [eventbrite here](https://www.eventbrite.co.uk/e/philosophies-of-east-west-first-evening-tickets-1982072570414?aff=oddtdtcreator&_gl=1%2A1ynpvct%2A_up%2AMQ..%2A_ga%2AOTQxMTAzNjU3LjE3Njk3ODM4NTk.%2A_ga_TQVES5V6SH%2AczE3Njk4NzEwNzckbzMkZzEkdDE3Njk4NzE5NTMkajQ5JGwwJGgw).**
Philosophy means the love of wisdom, and being a philosopher essentially means having an active attitude and awareness towards life.
We are all born philosophers, with a natural need to ask questions and with the intuition that there are answers to be found. Every civilisation has tried to pass on its wisdom, leaving us a vast heritage of useful knowledge and experiences to rediscover.
Explore the timeless ideas that have inspired and guided humanity throughout history and their relevance and practical application for our lives.
This first evening can be attended for £10 as a standalone introduction to **Philosophies of East & West** however if you are interested in learning more about the full 18-week course and applying, please visit [philosophiesofeastandwest.org](https://www.philosophiesofeastandwest.org/ "https://www.philosophiesofeastandwest.org/")
Thursday Evening – Long Pose Life Drawing and Painting
This is a studio based long pose life drawing and painting session.
We have a nude model for two hours in a single pose to give you time to complete a finished drawing or to paint the figure. You are welcome to draw or paint in oils or wet media.
Our studio is purpose built and well equipped with easels, drawing boards, clips and so on. We sell materials at reasonable prices so if you forget anything we should be able to help you out. We have professional lighting for the models and full spectrum lights for the studio to give you a good experience.
We break for 5 minutes for the model every 25 minutes
This is not a tutored session but it is run by artist [Audrey Fattouche](https://www.instagram.com/audreyfattouche/), who will be happy to give guidance if requested and may suggest themes or ideas to consider during the evening.
Studio session £15
[Click here](https://www.dulwichartgroup.co.uk/product/thursday-evening-drawing/) to book and more information
Error-handling in C++26
This month we have a visiting speaker from think-cell, Sebastian Theophil, who will talk to us about error handling in C++26 (with sprinkles of C++23).
We also have space for a shorter talk, or lightning talks. If you would like to speak - even for just five minutes, please drop something into cppldn.uk/speak.
**think-cell** will also be supporting the group by providing pizza and drinks - thanks **think-cell**!
Thanks, also, to **Maven Securities** for hosting us again, this month.
**As usual we'll need your full name for the door list, so we'll be asking for this on registration** (as this may be different to your username).
This data will only be used for the door list/ registration and not published anywhere or used for other purposes.
If you'd like to speak at a future event please get in touch at [cppldn.uk/speak](http://cppldn.uk/speak).
**Here's the approximate schedule:**
**18:30** *Doors open*
**19:00** "Intro and news" - *Phil Nash*
**19:10** *"compile_assert - Compile time C++ assertions" - Jonathan Grant*
I present compile_assert(expression, message), a new C++ keyword proposal for enforcing assertions at compile time within ordinary (non-constexpr) functions.
compile_assert provides advanced asserts at compile time, not runtime. Used for bounds checking, parameter validation and data validation at compile time. All three major compilers (GCC, Clang, MSVC) are supported with a sample implementation. The example implementation does this by using GCC’s attribute error which works with Clang.
**19:25** "Compile-Time Data Layout Transformation with C++26 Reflection" - *Arturs Kalnins*
We’ll use C++26 static reflection and injection to convert an AoS into a SoA at compile time, live on the latest GCC, with zero macros and zero boilerplate.
**19:40** *break*
**20:00** "To Err is Human: Robust Error Handling in C++26" - *Sebastian Theophil*
A walk through the new error handling features in C++26 — including \`std::expected\`, \`std::stacktrace\`, contracts, and more — and how they can help us write more robust, maintainable code.
**21:00** *Conclusion, and moving on somewhere else*
\-\-\-
**About the speakers**
*Sebastian* has been working at think-cell since it was founded in 2002. In the last few years, among many other things, he has ported think-cell to run on macOS. He also maintains the typescripten project, which lets programmers call JavaScript libraries from C++ code compiled to WebAssembly in a convenient and type-safe way. He enjoys leaving his desk from time to time to talk at international C++ conferences.
*Jonathan* has been a Software Engineer since 2003, worked in the video games industry and also embedded space for a long time at Renesas in safety critical systems for the automotive sector in C and C++. He also develops bespoke machine learning software in C++. He has a BSc Computer Science and an MSc Software Engineering.
*Arturs* is a C++ software engineer with a background in aerospace engineering, where he developed a strong foundation in mathematics and systems thinking. He builds reliable, high-performance systems across embedded software, networking, and distributed platforms, with a particular focus on modern C++ (23/26), Rust, and performance-critical design. He enjoys tackling complex engineering challenges, designing clean abstractions, and contributing to the standards and practices that help teams deliver robust systems effectively.
Computer Graphics Events This Week
Discover what is happening in the next few days
Saturday morning women’s walk in Clapham Common
**🕙 Time**
We meet at **10:00 AM** and will start walking shortly after.
The walk lasts around **60–75 minutes**.
**📍 Where to Meet**
We’ll meet at the **Clapham Common Bandstand**.
A message with the **exact spot and a visual cue** (what I’m wearing) will be posted in the event comments on the morning of the walk.
Show and Tell + Networking. **The Hercules Pillars** near Holborn station
*Disclaimer: All are welcome. Students, professionals, non professionals, business owners, curious cats.
----------------------------------------------------------
Come along to the Hercules Pillars located in Holborn in City centre of London, for a few hours to meet friendly faces, work on your personal projects, or just come and share what passion projects you are all working on.
Feel free to bring your laptop, tablet, sketchbook, and notes on the day.
Whether you work in Animation, Art, Design, Film, Games development, or storytelling, you are welcome to come along. We love being around diverse creatives who want an opportunity to showcase their talents.
This is an excellent opportunity for those looking to socialise with like-minded people and to get friendly feedback on their work.
All backgrounds are welcome to join us, even if your just curious about Animation/Art/Storytelling
\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
I Look forward to seeing you there.
Themed Tours of the National Gallery 2: PORTRAITS
As any one who has ever taken a selfie, only to delete it and try for a better one knows, we all have an idea of how we want to be seen by others. This was always the case. When commissioning a portrait or painting a self portrait, the foremost thing in a sitter's mind was how to present a most flattering image, and how to persuade others of one's best qualities - skills, intelligence, goodness, power or status in society.
The consequence of that is that portraits usually lie in favour of propaganda.
We will look at the way artists from the Renaissance onwards manipulate their sitters' and their own likenesses to reflect their ambitions and society's expectations.
A street photography journey to the Barbican Centre
The Barbican Centre is a symbol of brutalist architecture. Sharp edges, concrete, light and shadow, columns and blocky shapes: it’s a place rife with opportunities for our keen eyes and blazing cameras!
This maze of shapes and lines is where we will be continuing our journey towards street photography excellence.
It isn't the place for complex, layered crowds. Instead, we will focus on a slower, more intentional pace—seeking out the shapes, lines, and patterns where we can purposefully place a human element to create a striking image.
Open to all skill levels. Whether you shoot on a smartphone or a high-end camera, this workshop is about elevating your craft and learning to capture better, more intentional images.
For those who have joined me before, I look forward to continuing our journey. We’ll be building directly on the skills you’ve already practiced, adding this new 'intentional' element to your toolkit to create even more compelling street scenes.
I will be there helping you along to develop the frame and to understand how to build the image from the ground up.
Join us for a great afternoon, sharing your passion with fellow photographers and taking an important step in your journey to mastering the streets with your camera!
What will you need?
A camera or a smartphone, of course, and a pair of comfortable shoes.
And a determination to have a good time, because you certainly will!
After the workshop you will be invited to join the Tap on the Shoulder WhatsApp group, where you will be able to share your best efforts from the workshop and receive feedback from me and your peers.
At the end of the workshop we will be heading for the nearest pub for a refreshment and some banter, enjoying each other’s company and planning our future street photography mischief!
What are you waiting for? Book your place now and take your next step in improving your street photography skills!
Bring your children, they can participate as well! Attendance is free for children under 15 years of age: please use the discount code UNDER15.
Please come 5-10 minutes early. I will wait for 5 minutes for late arrivals then start the workshop out of respect for the people that arrived on time!
Botanical Beginnings: Painting Leaves and Blooms
Capture nature’s beauty with gentle, colourful brushstrokes — perfect for a relaxing afternoon. Beginners welcome!
Immerse yourself in the calm, creative world of botanical watercolour with **Ann Mackowski**— an **award-winning artist** whose work has been **featured on *Sky Landscape Artist of the Year*** and who **exhibits with the Royal Society of Painters in Watercolours**.
In this relaxed and friendly workshop, Ann will guide you through the process of painting fresh leaves and delicate blooms, sharing the professional techniques she uses to capture the vibrancy and grace of the natural world. Whether you’re completely new to watercolour or looking to refine your skills, this is a wonderful way to unwind, connect with nature, and rediscover the joy of painting.
Enjoy a few peaceful hours of creativity, conversation, and colour — and leave with a piece of art you’ll be proud to frame.
**You will learn:**
* How to sketch and paint plants with both **accuracy and flow**
* **Colour mixing** secrets for lively greens, florals, and subtle natural shades
* Techniques for **layering transparent washes** to create depth and softness
* Adding **finishing touches** with fine detail brushes
* How to **turn a simple study into a beautiful, frameable piece**
We will take inspiration from a mix of fresh flowers, and reference works from famous botanical artists. After a step-by-step follow along exercise and several fun warmups in brushwork, you'll be able to complete your own unique composition.
Midway through there will be a tea and refreshment break, and a chance to mingle with your fellow artists.
A joyful celebration of colour, creativity, and the beauty of nature — perfect for anyone who loves to paint or simply wants to begin
Team Challenge : Street Photography in the Style of...
Join this fun challenge to shoot in the style of famous photographers such as Moriyama, Cartier Bresson, Erwitt and others. This challenge is designed to stretch and encourage you to shoot a new and different type of photography.
We'll start with a brief and set you into teams, look at your first challenge, then we'll go out shooting until we've worked through all the challenges.
We will set the teams once everyone arrives and that way you'll have the courage (if you need it!) shooting street photography. We will stop for a coffee and review some of the images of the day.
WHAT YOU WILL LEARN:
* The work of famous street photographers
* Composition - layering / rules / what to look for
* Candid or posed and how to approach people
**PAYMENT OPTIONS**
* **PayPal via RSVP**
* The Meetup transaction fee will be added. and you'll automatically be added to attend
* **Send £25 via PayPal** to \*\*[creativebeansproductions@gmail.com**](http://creativebeansproductions@gmail.com%2A%2A/) with no extra fee.
* Send us a text or comment below and we will add you to the event attendee list.
EQUIPMENT:
* Any camera
* A standard 18-55, 24-70 etc kit lens will do or a 70-200 for candid
OTHER ESSENTIALS
* A fun and experimental attitude!
TRAVEL
* As usual check TFL website for any issues that may delay your journey
CONTACT
* Alex 07956 264049
VENICE PHOTOGRAPHY WEEKEND - Oct 2026
[https://www.meetup.com/londonphotographicopa/events/313109095](https://www.meetup.com/londonphotographicopa/events/313109095)
UPCOMING EVENTS
[www.meetup.com/londonphotographicopa/events](http://www.meetup.com/londonphotographicopa/events)
Fun Casino night at the Owl and Hitchhiker
[https://youtu.be/k7JaQ7III2M](https://youtu.be/k7JaQ7III2M) \*\*Video of the night\*\*
Tickets are £25 each for that you get two and a half hours of game time on our tables with three professional croupiers dealing the games we all know and love.
We also have prizes that can be won on the night, for the players who have most chips left at the end! everyone gets given £500 of play fun money (not real money). Blackjack is £1 minimum bet and £50 max (not real money) roulette is 25p and craps £1 minimum. The first person that goes bankrupt has to do a forfeit (it can be brutal).
Please take a look at the photos to see how amazing the table games are real casino grade equipment is used.
All in all its a great night out plenty of entertainment good music perfect for dates, singles and meeting new people.
See you on the 7th!
Sam
Computer Graphics Events Near You
Connect with your local Computer Graphics community
Building Agents with Microsoft Foundry
We will show a variety of methods for building agents that run in Microsoft Foundry. This covers the different types of agents: Prompt, Multi, and Hosted, as well as the development lifecycle using evals and traces.
Prototype, Play, and Build Workshops (In-Person @GameArena)!!!
This month, we are in-person at GameArena!!! We will also be joined by students and their games from [Shawnee State](https://www.shawnee.edu/game-design-programs)!
\-\-\-
Join us for our our monthly COGG Prototype and Play event @GameArena! Come to play and showcase your games.
We're back in the upper levels of the catwalk mezzanine area. It'll be packed with lots of camaraderie playing your game(s) and other's games on the 2nd floor as well as the 1st floor in the gaming room below the mezzanine.
Light snacks and water provided but you can buy food and drinks at the bar (alcoholic drink ID required).
[https://www.game-arena.co/menu](https://www.game-arena.co/menu)
**Attendees:**
Don't have a game to show? Not a problem! All are welcomed and invited from all ages and backgrounds. The more we can have to play test our games the better!
**Developers:**
Do you have a game that you would like to get critical feedback on? Would you like an excuse to work on a game with other talented artists, programmers, musicians, designers, and writers? Digital, table-top, non-experienced developers, and the like are welcomed! We'll provide signage for your game to help others learn more about your work. Wifi, outlets, tables, and seats (though standing tables also) are available.
Come to the Prototype and Play workshop to collaborate and meet local game developers for an evening of epic and raw game play fun! Play works-in-progress, show off your own game, work with others to add polish to a game, or even lend your talents to other fellow developers.
Can use South Garage at the Gateway with a $5 voucher on your way out.
75 E 11th Ave, Columbus, OH 43201
[https://maps.app.goo.gl/UwgveUYG37Jy7RtS9](https://maps.app.goo.gl/UwgveUYG37Jy7RtS9)
If you have any questions or comments, as always, feel free to reach out to us at [info@thecogg.com!](http://info@thecogg.com!/)
Columbus HUG March
Want to be a speaker? submit your talk to our Call for Presenters!!!
https://sessionize.com/cbus-hug-2026/
Unity GameDev Hangout – Tools, Workflows & Open Discussion
This is a relaxed, community-driven Unity GameDev meetup.
There’s no strict agenda this time — just developers getting together to talk shop, share projects, and exchange ideas.
**Some topics that may come up (based on attendee interest):**
• Frame Debugger & performance tooling
• Addressables & additive scene workflows
• Input System, localization, responsive UI
• AI integration approaches
• DevOps & LiveOps experiences
• Full lifecycle: idea → cross-platform publishing
• Favorite Asset Store tools and hidden gems
• Weird Unity quirks we’ve all run into
*Nothing is locked in.*
Bring a project if you’d like.
Bring a question.
Bring a lesson learned.
Or just come hang out and meet other developers.
All skill levels welcome!
From Idea to Working App in Minutes: The Agentic Development with Amazon Kiro
Discover Kiro, AWS’s innovative development environment that adapts to your workflow. Whether you prefer specification-driven development or a more intuitive, vibe-based approach, Kiro empowers you to build applications your way.
In this session, speakers will explore Kiro’s core functionality and its evolution through re:Invent 2025, along with demonstrations of prompts used to create APIs, hooks, and steering documents.
In the latter part of the session, watch as we build a complete example from scratch, showcasing Kiro’s agentic AI workflow in action for spec-driven development and vibe coding.
What You'll Learn - Core Kiro concepts and development philosophy
Feature evolution: pre and post re:Invent 2025
Practical examples: API creation, hooks, and steering docs
Live coding demonstration with real-time problem solving
Who Should Attend - Developers, solutions architects, and technical leaders interested in modern AWS development tools and AI-assisted coding workflows.
**Speakers Bio:**
Matthew Jorat: Matthew Jorat is a Customer Solutions Manager at AWS with nearly three decades of expertise in AI, cloud transformation, migration, modernization, IT, technology, and business. His career spans infrastructure engineer, solutions architect, security auditor, customer success director, support and services director, and operations officer. He was an early adopter of AWS services as a customer, and his current role at AWS uniquely blends his technical and business skills as he partners with executive teams to translate strategic priorities into measurable business outcomes through cloud adoption, AI implementation, and operational excellence. Matt leads end-to-end AI initiatives for enterprise customers, identifying high-impact use cases and maintaining relentless focus on measurable ROI. He holds eight AWS certifications and serves as Adjunct Professor at Franklin University teaching cloud computing and AWS architecture. His expertise encompasses GenAI, agentic AI systems, migration, modernization, and optimization strategies that drive transformation at scale.
[https://www.linkedin.com/in/mattjorat/](https://www.linkedin.com/in/mattjorat/)
Girish Bhatia: Girish Bhatia is a seasoned technology delivery leader with deep expertise in cross-domain program management. He holds multiple AWS certifications, including AWS Certified Solutions Architect – Associate, AWS Certified Developer – Associate, and AWS Generative AI Practitioner, and is also an AWS Community Builder. Girish brings over two decades of experience in the information technology industry.
Throughout his career, Girish has led major technology-driven business transformation from modernizing on-premises applications to driving large-scale cloud migrations. His work includes API-based integration platforms, data-center and mainframe modernization, and enterprise cloud adoption initiatives.
Based in Columbus, Ohio, Girish works at a tech-forward fintech company. He is passionate about AWS serverless architectures, Generative AI and emerging cloud technologies. An avid learner and builder, he continues to explore and apply the latest innovations in AWS to help organizations accelerate their digital transformation.
https://www.linkedin.com/in/girishbhatia/[https://www.linkedin.com/in/girishbhatia/](https://www.linkedin.com/in/girishbhatia/)
**THANK YOU** *Franklin University* for hosting our meetup! To learn more about *Franklin University*, please visit their website: https://www.franklin.edu/
**DIRECTIONS**
Franklin University
Fisher Hall
300 E. Main St, Columbus, OH 43215
Map: https://maps.app.goo.gl/jxjBA2hUmS5qrvhq8
Parking is FREE! Please park in Lot C in front of Fisher Hall. See attached map.
NOTE: Map the address only. When mapping with Google Maps it may use the Fisher Hall at OSU, which is NOT correct.
**Want to sponsor the pizza and/or bar tab?**
Please contact me if you would like to sponsor this meetup's pizza and/or bar tab: angelo@mandato.com
CBusData - Discover the Power of Window Functions
Window functions have nothing to do with the Windows operating system but provide a “window” to a result set when used in SQL queries. They are powerful, set-based methods to view data in unexpected ways. Window functions provide easy, set-based solutions to solve some common problems:
* Using running totals
* Performing operations in intervals
* Identifying data gaps and islands
* Performing aggregates without losing detail
Many people are confused by window functions and do not know how to use them properly. This session will explore window functions, how they work, and how to use them. Demonstrations with several examples will solidify how window functions can simplify queries and make them more powerful.
Cocoaheads
Come out to Improving for our monthly iOS and Mac meetings.
This Month's Presentation:
Nothing yet. (You should volunteer).
What is Cocoaheads (http://cocoaheads.org/)?
CocoaHeads is a group devoted to discussion of Apple Computer's Cocoa Framework for programming on MacOS X and iOS (including the iPhone, iPad and Apple Watch). During monthly meetings, members present on their projects and offer tutorials on various programming topics.
What is BuckeyeCocoa (http://buckeyecocoa.org/)?
BuckeyeCocoa is a group of Objective-C/Swift developers/enthusiasts. We host monthly Cocoaheads and near-weekly NSCoder meetings in Columbus, Ohio. The meetings are free to attend.
Presentations!
Presenters welcome! We are always in need of people willing to present material. Any Swift and/or Objective-C related topic is welcome. Times can be 5 minutes (i.e. lightning talks) to a maximum of 2 hours. Interested? Contact info is on the BuckeyeCocoa website.
To volunteer for a presentation contact us at @BuckeyeCocoa on Twitter.
Follow us on Twitter! @BuckeyeCocoa (https://twitter.com/#!/Buckeyecocoa/) For more information: http://buckeyecocoa.org/





























