sponsored ads

how to make hexagon in gimp

sponsored ads

I am learning the gimp. Today I have a homework about drawing hexagon .But I don't know how to do it, who can help me ? Asked Jul, 25 2011
add commentflag 

sponsored ads

answer this question

1.Located under: File--Shapes--General--Basic Shapes. 2.Using Visio’s alignment functions and some tricks with the Size and Position window. 3.With the pattern drawn, and the rectangle identifying where the repeats occur.Located under the Shape--Operations menu, Trim, Join, and Combine. 4.Creating a new pattern is just a matter of right-clicking the Fill Patterns note, and choosing New Pattern 5.To edit the pattern,  double-click on the Hexagon node 6.Once your pattern is created, you can apply it via the Format -- Fill dialog. 7.Done. Answered Nov, 20 2010
vote up 0 vote down

Hi, i stumbled upon a AS2 solution once which I rewrote to AS3.

 

var sides:Number = 6;
var radius:Number = 100;
var mc:MovieClip = new MovieClip();
mc.graphics.lineStyle(1,0x000000,1);
mc.graphics.moveTo(radius,0);
for (var i:Number = 0; i<=360; i += 360/sides) {
    var radians:Number = i*Math.PI/180;
    var xPos:Number = Math.cos(radians)*radius;
    var yPos:Number = Math.sin(radians)*radius;
    mc.graphics.lineTo(xPos,yPos);
}
mc.x = stage.stageWidth/2;
mc.y = stage.stageHeight/2;
addChild(mc);

Answered Nov, 16 2010
vote up 0 vote down

Download Tutorial of Adobe Photoshop CS4 Tutorial

Answered Sep, 29 2010
vote up 0 vote down

Your Answer

community wiki:

The Verified Code is to stop spamming. It will be hidden once your reputation reached 100.
or
Create one

Options

sponsored ads

Download related software from AFC

GIMP 2.7.5

Last Updated: Apr 22, 2012
License: GPL
Filesize: 18.86MB

Continue to downloadPower by Afreecodec.com