This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename files for consistency and update project settings.
Updated file names to follow a consistent naming convention, improving readability and organization. Enhanced the project settings for better package management and code documentation. Simplified dependencies in requirements.txt by removing unused libraries.
- Loading branch information
1 parent
58ce654
commit a76a476
Showing
14 changed files
with
36 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
const width = 500; // Width of our canvas | ||
const height = 500; // Height of our canvas | ||
|
||
setDocDimensions(width, height); | ||
|
||
// Head | ||
const headRadius = 20; | ||
const headPosition = [width / 2, height * 0.75]; // Position the head towards the top center | ||
drawLines(bt.circle(headPosition, headRadius)); | ||
|
||
// Torso | ||
const torsoRadius = 40; | ||
const torsoPosition = [width / 2, height * 0.5]; // Position the torso below the head | ||
drawLines(bt.circle(torsoPosition, torsoRadius)); | ||
|
||
// Spine | ||
drawLines([ | ||
[[headPosition[0], headPosition[1] + headRadius], [torsoPosition[0], torsoPosition[1] - torsoRadius]] | ||
]); | ||
|
||
// Arms | ||
const armLength = 100; | ||
drawLines([ | ||
[[headPosition[0] - armLength, headPosition[1]], [headPosition[0], headPosition[1]]], | ||
[[headPosition[0] + armLength, headPosition[1]], [headPosition[0], headPosition[1]]] | ||
]); | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,6 @@ | ||
psutil~=5.9.8 | ||
WMI~=1.5.1 | ||
tqdm~=4.66.4 | ||
pathlib~=1.0.1 | ||
colorlog~=6.8.2 | ||
discord~=2.3.2 | ||
discord.py~=2.4.0 | ||
requests~=2.32.3 | ||
DateTime~=5.5 | ||
opencv-python~=4.10.0.84 | ||
dlib~=19.24.5 | ||
imutils~=0.5.4 | ||
numpy~=1.26.4 | ||
geocoder~=1.38.1 | ||
pathlib~=1.0.1 |