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

Calculating thickness of 3D geometry of a model

I am doing finite element modelling. I have a geometry which does not have a uniform thickness and I want to calculate the thickness of that in 4 distinct nodes and compare it with another model. Is there any method to calculate the thickness of the…
0
votes
1 answer

How do I change the border size for a table in Dear ImGui?

How do I change the border size for a table in Dear ImGui? By default, in Dear ImGui, the thickness of the table borders is 1 pixel (this can be seen if you draw the table). I want to change this value. How can this be done? And is it possible at…
0
votes
1 answer

Three js line thickness

I am using three js and need a way to draw lines that have a thickness greater that 1px. Whenever I use LineBasicMaterial and try to change the lineWidth property, nothing happens. There is already a reason related to Windows Chrome versions so I am…
Mampinator
  • 117
  • 1
  • 11
0
votes
1 answer

Extra space - where does it come from?

I was fiddling around with this example https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_element_clientleft_clienttop It looked like the top picture below, having a space between the top border and the text. I then changed the code to a…
Poul Kristensen
  • 135
  • 1
  • 9
0
votes
1 answer

Thickness of axes in Manim plot

I am just beginning my foray into Manim and have it installed correctly (community version) and have run some sample programs. One of the things I want to do is to change the thickness of lines used in a graph. I was able to change the thickness…
DJElectric
  • 349
  • 1
  • 4
  • 18
0
votes
0 answers

Three JS how to add color and line thickness to mesh loaded with GLTFLoader

So far I managed to load a mesh with GLTFLoader and turn it into a wireframe. I'm stuck at the part where I want to color it and give it a line thickness. I don't completely understand how to use traverse(). My code so far: var loader = new…
tiesfa
  • 43
  • 4
0
votes
3 answers

Setting margin in XAML for dynamically created WPF controls

I have a WPF that creates buttons dynamically when the form is loaded and adds them to a StackPanel that has been declared in XAML. I would like to define the style for these buttons completely in XAML inside the StackPanel.Resources. So far I am…
mclark1129
  • 7,532
  • 5
  • 48
  • 84
0
votes
2 answers

PhpSpreadSheet : border thickness

I generate a sheet with PhpSpreadSheet. I use BORDER_THIN which makes 1,00 pt borders. Is it a way to get 0,5 pt borders ?
Zakolis
  • 1
  • 2
0
votes
2 answers

Grafana how to change annotation line thickness

Is there any option/workaround to change Grafana's annotation line thickness? The line of an annotation is so thin it can be barely seen. It would be also more visible if the line styling could be changed from dashed to solid.
Jimmix
  • 5,644
  • 6
  • 44
  • 71
0
votes
1 answer

How can I change the border thickness of an Android checkbox?

The default size of the android checkboxes were too small for my purposes, so I changed their overall size, however with their new size their borders now are horribly thick. In what way could I change the thickness? I quite like the default…
0
votes
1 answer

Three.js, adding thickness to mesh geometry triangle

I'm new to three.js. I draw a simple triangle with this. But how can I make it 1 height of thickness, instead of plane geometry? var triangleGeometry = new THREE.Geometry(); triangleGeometry.vertices.push(new THREE.Vector3( 0.0, 1.0, 0.0));…
Martin Pineault
  • 87
  • 1
  • 14
0
votes
1 answer

WPF: changing the thickness of a DataGrid's scroll bars

I have a WPF application that is meant to run on a touchscreen. Hence, all the buttons must be a bit bigger, so the user can click them by hitting the screen, rather than using the mouse. One of the views contains a data grid that is bound to an…
Eddie
  • 271
  • 4
  • 18
0
votes
2 answers

How to reduce table border thickness?

I am drawing one table with border=1 but it looks quite prominent as I am enclosing one image inside it so I want to make it thinner for better look and feel.
How can I…
Manish
  • 3,341
  • 15
  • 52
  • 87
0
votes
1 answer

ActionScript lineStyle Thickness to fill a circle

I'm trying to build a circle using lines. Each line starts in the center of the circle and is as long as the circle's radius. Using a loop along with sine and cosign waves, I can build the circle using the sine and cosign to mark the coordinates…
Chunky Chunk
  • 16,553
  • 15
  • 84
  • 162
0
votes
2 answers

Setting Underline Thickness in CSS

I'm redesigning my website and wish to have certain paragraphs styled like in the below image. I thought this would be fine but now it's suddenly just hit me... there's no way to set the thickness of an underline! Or at least I don't think there…
user1049944