python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Make a hemisphere volume semitransparent
I have a hemisphere on the vertical axis, and would like to make it semitransparent (with the borders fading all around, in a sort of field).
I tried using pcolor3, but I do not know how to attach X,...
Vigor831
Votes: 0
Answers: 1
How to print a rectangle shape thru multiplication signs in python?
long = int(input("longueur : "))
larg = int(input("largeur : "))
for i in range(larg):
if i == 0 or i == larg - 1:
for j in range(long):
print("* "...
Tony Abdelsater
Votes: 0
Answers: 4
Shrink The Shape Keep Margin in Swift
I draw a shape, I want shrink it with a specific value, I use transform scale with an anchor point but it isn't the result that I'm expected. I want space between the edges of the original shape and ...
Sasaki
Votes: 0
Answers: 1
Handle varying shapes in jax numpy arrays (jit compatible)
Important note: I need everything to be jit compatible here, otherwise my problem is trivial :)
I have a jax numpy array such as:
a = jnp.array([1,5,3,4,5,6,7,2,9])
First I filter it considering a va...
Valentin Macé
Votes: 0
Answers: 1