Quantcast

ridemonkey logo

Nick

My name is Nick
Sep 21, 2001
24,067
14,721
where the trails are
I have a few stickers around somewhere. If I can find them we'll have a good ol' fashioned knife fight. All-comers are welcome to battle to the death, winner takes all.
 

worship_mud

Turbo Monkey
Dec 9, 2006
1,464
2


i've put the only one i could find ( i know for shure i had more of them...) to use... :D
 
Last edited:

binary visions

The voice of reason
Jun 13, 2002
22,100
1,150
NC
The sticker printing machine was shuttered but I sent an email this morning to a company to ask about their rates.
 

TN

Hey baby, want a hot dog?
Jul 9, 2002
14,301
1,353
Jimtown, CO
I would put one on my new whip. I just need to find the stash i have...after 3 moves this is unlikely though. :/
 

Ciaran

Fear my banana
Apr 5, 2004
9,839
15
So Cal
I'm about ready to retire my RM Ride Hard Ride Soft t shirt. It's getting thin. I still have my RM DH jersey hanging in the closet. I'm outta stickers. :(
 

Full Trucker

Frikkin newb!!!
Feb 26, 2003
10,554
7,647
Exit, CO
I definitely 100% have Ridemonkey logos, whatever format you need. I find that vector (eps, ai, etc.) is best for shirts, hats, etc. Shoot me a PM with yer email and I'll get it to ya.

Also wait, @Sandwich I might have your email already. Lemme check.
 

Sandwich

Pig my fish!
Staff member
May 23, 2002
21,080
5,999
borcester rhymes
Sure man, might place a cafepress order tonight so I might order myself a T shirt and re-hash the whole T shirt order thing later.
 

Full Trucker

Frikkin newb!!!
Feb 26, 2003
10,554
7,647
Exit, CO
Sure man, might place a cafepress order tonight so I might order myself a T shirt and re-hash the whole T shirt order thing later.
I've used Teespring a bunch for Baja shirts... kinda wondering if enough monkeys would buy a shirt if it'd be worth the 15 minute investment on my part to set something up. Teespring is cool because everyone can order exactly what they want, it's printed on demand to order, and then drop shipped to each person.
 

Westy

the teste
Nov 22, 2002
54,447
20,249
Sleazattle
I was messing around in OpenSCAD avoiding talking to people last weekend and scripted a monkey logo. Not perfect but with a larger logo should be easy to fine tune the parameters to get it exact. Can be scaled, output in various 3 or 2-D formats

Monkeyface.png


resolution = 100;
$fn = resolution;
FaceRadius=100;
EarRadius=28;
Height=30;
HDelta=6;
MouthR=50;
RidgeT=8;
Nostril=13;
EyeR=35;
//Main Circle

module Monkey()
{
module Base()
{
//Main Circle
translate ([0, 0, 0])
cylinder (r=FaceRadius, h=Height );
//Ear 1
translate ([80, -70, 0])
cylinder (r=EarRadius, h=Height );
//Ear 2
translate ([-80, -70, 0])
cylinder (r=EarRadius, h=Height );

}

difference() {
Base();
translate ([0, -0, Height-HDelta])
cylinder (r=FaceRadius-RidgeT, h=Height );
translate ([-80, -70, Height-HDelta])
cylinder (r=EarRadius-RidgeT, h=Height );
translate ([80, -70, Height-HDelta])
cylinder (r=EarRadius-RidgeT, h=Height );
}

//Mouth Main
translate ([0, 65, 0])
difference() {
cylinder (r=MouthR, h=Height );
translate ([0, 0, 5])
cylinder (r=MouthR-RidgeT, h=Height );
}


//Nostrils

translate ([19, 58,0])
cylinder (r=Nostril, h=Height);
translate ([-19, 58,0])
cylinder (r=Nostril, h=Height);


module Triangle()
{
polyhedron(
points=[[0,0,0], [EyeR+20,20,0], [20,EyeR+20,0], [0,0,Height], [EyeR+20,20,Height], [20,EyeR+20,Height]],
faces=[ [3,0,1,4], [2,5,4,1], [3,5,2,0], [3,4,5], [2,1,0]]);

}

module Eye()
{
difference() {
cylinder (r=EyeR, h=Height-1);
//cube ( 50);
Triangle();
}
}


//Earlobes
module Lobes()
{translate ([-80, -70, 0])
difference() {
cylinder (r=EarRadius-RidgeT-5, h=Height );
translate ([5,5,0])
cylinder (r=EarRadius-RidgeT-4, h=Height );
}
}
translate ([43, -23,0])
Eye();
translate ([-43, -23,0])
Eye();

Lobes();
mirror ([1,0,0]) Lobes();

}

Monkey();
 

Full Trucker

Frikkin newb!!!
Feb 26, 2003
10,554
7,647
Exit, CO
I was messing around in OpenSCAD avoiding talking to people last weekend and scripted a monkey logo. Not perfect but with a larger logo should be easy to fine tune the parameters to get it exact. Can be scaled, output in various 3 or 2-D formats

View attachment 168352

resolution = 100;
$fn = resolution;
FaceRadius=100;
EarRadius=28;
Height=30;
HDelta=6;
MouthR=50;
RidgeT=8;
Nostril=13;
EyeR=35;
//Main Circle

module Monkey()
{
module Base()
{
//Main Circle
translate ([0, 0, 0])
cylinder (r=FaceRadius, h=Height );
//Ear 1
translate ([80, -70, 0])
cylinder (r=EarRadius, h=Height );
//Ear 2
translate ([-80, -70, 0])
cylinder (r=EarRadius, h=Height );

}

difference() {
Base();
translate ([0, -0, Height-HDelta])
cylinder (r=FaceRadius-RidgeT, h=Height );
translate ([-80, -70, Height-HDelta])
cylinder (r=EarRadius-RidgeT, h=Height );
translate ([80, -70, Height-HDelta])
cylinder (r=EarRadius-RidgeT, h=Height );
}

//Mouth Main
translate ([0, 65, 0])
difference() {
cylinder (r=MouthR, h=Height );
translate ([0, 0, 5])
cylinder (r=MouthR-RidgeT, h=Height );
}


//Nostrils

translate ([19, 58,0])
cylinder (r=Nostril, h=Height);
translate ([-19, 58,0])
cylinder (r=Nostril, h=Height);


module Triangle()
{
polyhedron(
points=[[0,0,0], [EyeR+20,20,0], [20,EyeR+20,0], [0,0,Height], [EyeR+20,20,Height], [20,EyeR+20,Height]],
faces=[ [3,0,1,4], [2,5,4,1], [3,5,2,0], [3,4,5], [2,1,0]]);

}

module Eye()
{
difference() {
cylinder (r=EyeR, h=Height-1);
//cube ( 50);
Triangle();
}
}


//Earlobes
module Lobes()
{translate ([-80, -70, 0])
difference() {
cylinder (r=EarRadius-RidgeT-5, h=Height );
translate ([5,5,0])
cylinder (r=EarRadius-RidgeT-4, h=Height );
}
}
translate ([43, -23,0])
Eye();
translate ([-43, -23,0])
Eye();

Lobes();
mirror ([1,0,0]) Lobes();

}

Monkey();
Can you import an SVG or EPS file? I’ll send you that if you want.