diff --git a/media/attribution.js b/media/attribution.js
index cf60043c..339ba7a0 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -285,7 +285,26 @@ const attributionData = {
authors: [
]
- }
+ },
+ {
+ prefix: "./media/objects/humans/",
+ files: [
+ { name: "woman-1.svg", source: "https://commons.wikimedia.org/wiki/File:1Silhouette_Female.svg" }
+ ],
+ authors: [
+ "phil-bronnery",
+ "beao"
+ ]
+ },
+ {
+ prefix: "./media/objects/humans/",
+ files: [
+ { name: "man-1.svg", source: "https://commons.wikimedia.org/wiki/File:Silhouette.svg" }
+ ],
+ authors: [
+
+ ]
+ },
],
people: {
"appledectomy": {
@@ -300,6 +319,10 @@ const attributionData = {
name: "Aviraptia",
url: "https://www.furaffinity.net/user/aviraptia/"
},
+ "beao": {
+ name: "Beao",
+ url: "https://commons.wikimedia.org/wiki/User:Beao"
+ },
"cardboardhead": {
name: "cardboardhead",
url: "https://twitter.com/cardboardhead"
@@ -376,6 +399,10 @@ const attributionData = {
name: "Oselotti",
url: "https://www.furaffinity.net/user/oselotti"
},
+ "phil-bronnery": {
+ name: "Phil Bronnery",
+ url: "https://www.flickr.com/people/27919241@N02"
+ },
"quake-yote": {
name: "Quake Yote",
url: "https://www.furaffinity.net/user/rokossovskiy"
diff --git a/media/objects/humans/man-1.svg b/media/objects/humans/man-1.svg
new file mode 100644
index 00000000..980e7407
--- /dev/null
+++ b/media/objects/humans/man-1.svg
@@ -0,0 +1,22 @@
+
+
+
diff --git a/media/objects/humans/woman-1.svg b/media/objects/humans/woman-1.svg
new file mode 100644
index 00000000..0daf130f
--- /dev/null
+++ b/media/objects/humans/woman-1.svg
@@ -0,0 +1,17 @@
+
+
+
+
diff --git a/presets/objects.js b/presets/objects.js
index 7d9d0418..55bf1f15 100644
--- a/presets/objects.js
+++ b/presets/objects.js
@@ -80,5 +80,26 @@ function makeObjects() {
)
});
+ results.push({
+ name: "Human",
+ constructor: () => makeObject(
+ "Human",
+ {
+ woman1: {
+ height: math.unit(5 + 4/12, "feet"),
+ mass: math.unit(140, "lbs"),
+ image: { source: "./media/objects/humans/woman-1.svg" },
+ name: "Woman 1"
+ },
+ man1: {
+ height: math.unit(5 + 6/12, "feet"),
+ mass: math.unit(150, "lbs"),
+ image: { source: "./media/objects/humans/man-1.svg" },
+ name: "Man 1"
+ },
+ }
+ )
+ });
+
return results;
}