# Quick Reference

- [Screen](https://docs.pydraw.graphics/quick-reference/screen.md): The Screen is the base object for any pyDraw program, and can perform a variety of different tasks.
- [Color](https://docs.pydraw.graphics/quick-reference/color.md): All Color values are wrapped in pyDraw as to make constructors and methods more clear. Colors are immutable, and can be created from names, RGB values, or a hex string.
- [Location](https://docs.pydraw.graphics/quick-reference/location.md): All Locations in pyDraw are wrapped with this class, however some methods and constructors will automatically convert tuples to Locations automatically.
- [Renderable](https://docs.pydraw.graphics/quick-reference/renderable.md): Renderable serves as the base class for any object with a width and height (most notably excluding lines and dots). The Renderable class does extend the Object class which tracks location and updates.
- [Text](https://docs.pydraw.graphics/quick-reference/text.md): A brief reference to the Text class.
- [Line](https://docs.pydraw.graphics/quick-reference/line.md): A brief reference to the Line class.
- [Image](https://docs.pydraw.graphics/quick-reference/image.md): A brief reference to the Image class.
- [Input](https://docs.pydraw.graphics/quick-reference/input.md): The Quick Reference for Input just lists all methods available to be registered for input.
- [Scene](https://docs.pydraw.graphics/quick-reference/scene.md): Create containerized pyDraw programs and apply them to the Screen independently!


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.pydraw.graphics/quick-reference.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
