About 17,600,000 results
Open links in new tab
  1. Making a triangle shape using XML definitions? - Stack Overflow

    Mar 25, 2010 · Discussion on creating a triangle shape using XML definitions, including coding solutions and examples.

  2. how to print a number triangle in java - Stack Overflow

    Feb 5, 2014 · If you look above to Brian's code, you can see he has a main loop, which controls how many lines of output are printed in this case there are 5. Where it says "// Determine …

  3. How to make a triangle shape with Tailwind? - Stack Overflow

    Apr 17, 2021 · Learn how to create a triangle shape using Tailwind CSS with detailed guidance and examples on Stack Overflow.

  4. How to make 3-corner-rounded triangle in CSS - Stack Overflow

    Jan 22, 2013 · The idea is really simple: you first apply a series of transforms to your .triangle element (which has overflow: hidden; - you can remove that to see what happens ;) ) in order …

  5. How to print a Triangle Pyramid pattern using a for loop in Python?

    def triangle(n): k = 2*n - 2 for i in range(0, n): for j in range(0, k): print(end=" ") k = k - 1 for j in range(0, i+1): print("* ", end="") print("\r") n = 5 triangle(n) Description: The 1st line defines the …

  6. Nested loop code to create right triangle in Python

    Dec 29, 2016 · 1 Professor gave us a simple code that executes a square and we need to add/change the code to output the right triangle shape as shown below. It's just a simple loop …

  7. geometry - How do CSS triangles work? - Stack Overflow

    Aug 16, 2011 · 311 Different approach: CSS3 triangles with transform rotate Triangular shape is pretty easy to make using this technique. For people who prefer to see an animation …

  8. Draw solid color triangle using XAML only - Stack Overflow

    Sep 20, 2013 · Is it possible to draw a filled in triangle using XAML only (not a code behind solution)? Triangle should be like on the image below to represent sort direction …

  9. java - How do I draw a triangle? - Stack Overflow

    Dec 18, 2020 · 7 I know how to draw a rectangle and circles and ect with g.drawRect or g.drawOval. But there is no g.drawtriangle. Is there a way to draw a triangle with out me …

  10. How to create a transparent triangle with border using CSS?

    You can use the method I described here : How does this CSS triangle shape work? with a rotated pseudo element. You can then add a border to the rotated pseudo element to create …