shapes Questions
4
Solved
In my research, I've found that there is no built in functionality for enabling double click events on Shapes on an excel sheet. Many of the workarounds I saw involved writing classes or other such...
3
What I'm trying to achieve is to use a Drawable with a couple of layers inside it, but control some values at runtime such as the startColor for the gradient. Here's what I have in my_layered_shape...
4
I am having a hard time understanding the output shape of keras.layers.Conv2DTranspose
Here is the prototype:
keras.layers.Conv2DTranspose(
filters,
kernel_size,
strides=(1, 1),
padding='vali...
6
Solved
I'm trying to create a simple Drawable that I want to set as the background for a view (using setBackgroundDrawable). I simply want to divide the background of the drawable into 2 equal rectangles ...
2
I'd like to use Unicode shapes in ggplot2 geom_point() (specifically, arrows like ↘, Unicode "\u2198", or LaTeX \searrow), as in shape = "\u2198", that are not in the default font. In this unanswer...
4
Solved
I want to create a shape like this:
ccccccc
cccccc
ccccc
cccc
ccc
cc
c
My code is:
#include <iostream>
using namespace std;
int main(){
int i, j;
for(i = 0; i < 7; i++){
for(j = 7...
6
Solved
I have a Numpy 3 axis array whose elements are 3 dimensional. I'd like to average them and return the same shape of the array. The normal average function removes the 3 dimensions and replace it wi...
Ozonosphere asked 9/5, 2012 at 17:41
4
Solved
How can I draw half circle in OpenCV like below?
If not, how can I do this especially in Python?
11
Solved
I want to create gradient background where the gradient is in the top half and there's a solid color in the bottom half, like in this image below:
I can't because the centerColor spreads out to ...
Miyamoto asked 18/12, 2012 at 9:28
1
In SwiftUI Shapes we can make different color strokes by using gradients.
Eg -
@ViewBuilder
func lineWithSecondColorStyleFromPositionN() -> some View {
let n = 0.5
GeometryReader { gr in
Path...
Trapp asked 13/1, 2022 at 3:37
4
Solved
I am trying to create a custom tooltip with the triangle shape on either side. I have created a bubble but how to add the triangle in there without using any library?
class SdToolTip extends Statel...
3
Solved
I need to define an object (or a region) that is kind of "blob" shaped on a discrete gridmap. It should look something like this:
where the red region denotes the center point (these are just ide...
19
I am editing to make the question simpler, hoping that helps towards an accurate answer.
Say I have the following oval shape:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android=...
Johore asked 24/7, 2013 at 0:52
3
Solved
Is there a way in SwiftUI to union two shapes so that they cast a unified shadow. I have tried various combinations and modifiers but don't seem to be able to achieve the look I am after. Any insig...
6
Solved
I'd like to create a shape that's like the following image:
Notice the top half gradients from color 1 to color 2, but theres a bottom half that gradients from color 3 to color 4. I know how to ...
9
Solved
I have two rectangles characterized by 4 values each :
Left position X, top position Y, width W and height H:
X1, Y1, H1, W1
X2, Y2, H2, W2
Rectangles are not rotated, like so:
+-------------...
Bewick asked 15/11, 2012 at 1:37
1
Solved
I'm trying to use raster geometry to make a sphere-shaped mask (found in How to generate a sphere in 3D Numpy array made by user @norok2). Code is as following:
import raster_geometry as rg
import ...
7
I need to change the stroke color from the app. The user is able to change the background color so I need to also let them change the stroke (outline) of the button. As its is already set in the dr...
3
Solved
I am currently drawing a number of circles on a canvas in a custom view in code. the circles are static and do not change. I would like to draw them using a ShapeDrawable in xml to help clean up my...
6
I have a simple requirement to save MS-Office Drawing Objects embedded within a Word Doc to image files. The following code worked for image extraction from Powerpoint. However it does not work for...
12
I have a textview and want its corner to be in round shape. I already know it can be done using android:background="@drawable/somefile". In my case, this tag is already included so cannot use again...
Snowfield asked 13/9, 2013 at 8:40
3
Solved
I have a Shapely polygon. I want to cut these polygon into n polygons, which all have more-or-less equally sized areas. Equally sized would be best, but an approximation would be okay too.
I have t...
19
Solved
I have some problems finding the documentation of the definitions of shapes in XML for Android. I would like to define a simple circle filled with a solid color in an XML File to include it into my...
Tabbitha asked 6/7, 2010 at 9:40
4
Solved
Is there any way to create a circle with a missing segment like the picture using JavaScript or CSS3?
Drunken asked 30/10, 2013 at 12:40
7
Solved
I'm trying to make a series of photos into square photos. They may be rectangular horizontally (i.e. 600x400) or vertically (400x600), but I want to get them to be 175x175 either way. My thought wa...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.