Questions tagged [thickness]

Describes the thickness of a frame around a rectangle. Four Double values describe the Left, Top, Right, and Bottom sides of the rectangle, respectively.

Thickness values can be specified in two ways. When it is passed four Double values to the structure, they represent the Left, Top, Right and Bottom sides, respectively, of the bounding rectangle. Alternatively, it can also supply a single value, which applies a uniform value to all four sides of the bounding rectangle.

72 questions
0
votes
1 answer

Flash lineStyle rounds thickness?

The sprite which contains all element in my game world uses the real-world meter as distance unit, it doesn't know what pixels are. I then apply a scale to this sprite to make it appear correct on screen. Currently I use 1 meter = 100 pixels, so…
Bart van Heukelom
  • 43,244
  • 59
  • 186
  • 301
0
votes
1 answer

How do I animate attributes and export it as a fbx-file?

I have made a pipe in Maya, on which I have animated the thickness (Below is an example of 4 of the keyframes in the animation). Unfortunately when I export it as an fbx file, the animation of the of the thickness is not saved. Is there a way to…
Camilla Horne
  • 91
  • 1
  • 7
0
votes
2 answers

Can't make my nav bar smaller

I'm in the middle of making my nav bar and I just can't seem to make it any smaller, right now it looks too thick for what I want and I have tried altering padding, margins etc and can't seem to get it to budge. Altering height makes it thinner but…
John Tate
  • 3
  • 1
  • 4
0
votes
1 answer

NSBezierPath Object Appears to Be Drawing Variable Line Width

Ok, so I'm trying to draw a dashed box that's subdivided into sections where I'm going to put content. Here's my code: NSBezierPath *path = [NSBezierPath bezierPathWithRect:dirtyRect]; [path setLineWidth:3]; CGFloat pattern[2] = {5, 5}; [path…
Chris Fretz
  • 387
  • 1
  • 2
  • 10
0
votes
0 answers

CGAL - Extracting 2D contours form a sequence of segments

I am looking for some way how I could use CGAL to extract a 2D silhouette from a 2D graph. The 2D graph can have cycles and therefore holes. Just imagine something like a stick figure. The Input information would be pairs of points (defining…
0
votes
1 answer

Set the thickness width of the blinking cursor

Is it possible to use Autohotkey or other script to set thickness width of the blinking cursor? This setting can be manually operated by the following steps in WIN7: Control Panel-> Ease of Access Center->Make the computer easier to see->Set the…
0
votes
1 answer

iPhone Draw Line Thickness

My line is only 1 pixel thick. How can I thicken it? I use MontoTouch.net but Objective-C is fine in the answer. ctx.SetRGBStrokeColor (1,1,1, 1f); ctx.MoveTo(130,110); ctx.AddLineToPoint(200,200); ctx.StrokePath();
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
0
votes
0 answers

iOS, OpenGL ES. Line thickness on retina screen?

I use MonkSVG library to draw some svg files. My problem is lines are always of the same thickness on retina and non-retina display). And these lines are too fat if I compare with other library for android. I tried to reduce line thickness in…
user2083364
  • 744
  • 1
  • 7
  • 20
0
votes
2 answers

Java: Adjust outline thickness

I use this code: to outline a font: public class MyText extends JPanel { String text1 = null; public MyText (String text) { text1 = text; } public void paintComponent(Graphics g) { super.paintComponent(g); setBackground(Color.white); …
0
votes
3 answers

Draw a line with thickness in a image?

I want to draw a line with thickness in a image with PHP using GD library. I have found some solutions in this page PHP: imageline - Manual but none of them seems to work correctly when the (x, y) position of the line changes. There are 3 functions…
Teiv
  • 2,605
  • 10
  • 39
  • 48
-1
votes
1 answer

How to find thickness of segmented part of image in matlab?

I want to find the average thickness of a part which I am segmented, so I want to find the average pixel length in between the two borders (see below). How is it possible?
shemi
  • 3
  • 4
1 2 3 4
5