Tagged Questions
The fill tag has no wiki summary.
12
votes
9answers
534 views
C++: Fill array according to template parameter
Essentially, the situation is as follows:
I have a class template (using one template parameter length of type int) and want to introduce a static array. This array should be of length length and ...
10
votes
6answers
12k views
How to make a div to fill a remaining horizontal space (a very simple but annoying problem for CSS experts)
I have 2 divs: one in the left side and one in the right side of my page. The one in the left side has fixed width and I want the one of the right side to fill the remaining space.
The one on the ...
8
votes
7answers
452 views
How to make a div height to fill available space
I have a 3 column layout with some details below the columns.
You will notice that one of the column's height is greater than the others'. I'd like the other two divs to automatically fill the ...
7
votes
5answers
261 views
Easy way to populate this matrix?
I would like to populate an n * n (n being odd) matrix in the following way:
_ _ _ 23 22 21 20
_ _ 24 10 9 8 37
_ 25 11 3 2 19 36
26 12 4 1 7 18 35
27 13 5 6 ...
7
votes
3answers
2k views
MATLAB, Filling in the area between two sets of data, lines in one figure
I have a question about using the area function; or perhaps another function is in order...
I created this plot from a large text file:
The green and the blue represent two different files. What I ...
7
votes
6answers
1k views
How do I get Emacs to fill sentences, but not paragraphs?
I've seen at least two recommendations on StackOverflow to insert newlines between sentences when editing LaTeX documents. The reason being that the practice facilitates source control, diffing, and ...
5
votes
4answers
222 views
Python : How to fill an array line by line?
I have an issue with numpy that I can't solve.
I have 3D arrays (x,y,z) filled with 0 and 1.
For instance, one slice in the z axis :
array([[1, 0, 1, 0, 1, 1, 0, 0],
[0, 0, 1, 1, 0, 1, 1, 0],
...
5
votes
2answers
86 views
Is this a Bug in the Array.fill method in Ruby?
Should this be the case i.e. I am misunderstanding, or is it a bug?
a = Array.new(3, Array.new(3))
a[1].fill('g')
=> [["g", "g", "g"], ["g", "g", "g"], ["g", "g", "g"]]
should it not result in
...
5
votes
2answers
5k views
How to fill a Path in Android with a linear gradient?
Given a closed Path object result is like this: http://www.tutorialguide.net/images/adobe_photoshop/0043/001.jpg. Although that is a rectangle I'm looking for something which works with any closed ...
5
votes
2answers
1k views
Draw a self intersecting polygon on the HTML Canvas
I'm looking for a way to draw a self intersecting polygon with holes, I'm using the HTML Canvas element.
So given 5 points, I want to draw the red one below.
This question is essentially the ...
4
votes
2answers
359 views
ggplot2 - Shade area above line
I have some data that is constrained below a 1:1 line. I would to demonstrate this on a plot by lightly shading the area ABOVE the line, to draw the attention of the viewer to the area beneath the ...
4
votes
3answers
258 views
How to use C++0x lambdas local variables for std::fill()?
So I was trying to test a lambda accessing local variables in the scope in which it is used, based roughly on a simple example by Bjarne on the C++0x FAQS page at:
...
4
votes
2answers
928 views
SVG fill color transparency / alpha?
Is it possible to set a transparency or alpha level on SVG fill colours?
I've tried adding two values to the fill tag (changing it from fill="#044B94" to fill="#044B9466"), but this doesn't work.
4
votes
1answer
293 views
CUDA efficient polygons fill algorithm
I need efficient fill algorithm to fill closed polygons (like ex. Scanline fill), which I can run on CUDA. Have you got any suggestions?
Thanks in advance for any replays!
4
votes
2answers
743 views
R: Filling missing dates in a time series?
I have a zoo time series with missing days.
In order to fill it and have a continuous series I do...
I generate a chron date-time sequence from start to end.
I merge my series with this one.
I use ...
4
votes
3answers
21k views
Changing fill color of MovieClip Actionscript 3
i want to ask, how to change only fill color of an instance on the stage - i can do it by using ColorTransform object, but it changes color of the whole instance, not just the fill. I want to change ...
3
votes
2answers
167 views
Fill the space of a div
I would like an element to fill the remaining space of a parent div. I have managed to do this, You can see it here > http://www.mitchellwood.co.uk/nav/ but the filling div (right) sits underneath the ...
3
votes
1answer
511 views
Legend in Base R: Can fill refrain from drawing boxes on some lines? Can fill draw boxes that cover the whole symbol?
I have a plot with overlapping shaded confidence intervals that looks like this:
and I would like very much to annotate the legend with the color of the confidence interval. Something like:
...
3
votes
4answers
566 views
Java Arrays.fill()
How to fill a multidimensional array?
int[][] array = new int[4][6];
Arrays.fill(array, 0);
I tried it, but it doesn't work.
3
votes
4answers
1k views
2 divs aligned side by side, how to make right div fill width 100%?
I'm wondering what the best way to go about doing this is...
I have 3 divs:
container: width = 100%, holds 2 inner divs
inner_left div: width changes dynamically, but no wider than 200px (will hold ...
3
votes
2answers
129 views
Emacs fill-paragraph not breaking lines where expected
I have the following HTML code (a list item). The content isn't important--the problem is the end of line 2.
<li>Yes, you can learn how to play piano without becoming a
great notation reader,
...
3
votes
2answers
1k views
OpenGL glColorPointer repeat colors?
Imagine that you've got one of these guys:
Aka GL_TRIANGLE_STRIP. If you wanna color it using different colors, you could use:
glColorPointer(4, GL_UNSIGNED_BYTE, 0, colorArray);
...
3
votes
1answer
3k views
Scaling a fill pattern in raphael.js
paper=Raphael('previewBody',480,480);
paper.path({"stroke-width":1},'M0,0 L480,240 L480,480 L240,480 z')
.attr('fill','url(bg.png)'))
.scale(.5,.5,0,0);
My problem is the fill is not scaled with ...
2
votes
1answer
31 views
Fast solution to fill create and fill db table with data from csv file
Like in title.. I want to create table in my db and then fill it with records from my csv(tab is ";") file. There records (and whole table) won't be updating or changing by anyone. I just have to ...
2
votes
4answers
118 views
yet another date gap-fill SQL puzzle
I'm using Vertica, which precludes me from using CROSS APPLY, unfortunately. And apparently there's no such thing as CTEs in Vertica.
Here's what I've got:
t:
day | id | metric | d_metric
...
2
votes
1answer
77 views
different fillStyle colors for arc in canvas
I imagine the solution to this is very simple, and apologize in advance if this is painfully obvious, but I can't seem to figure out how to set two different fillStyles for two different arcs ...I ...
2
votes
1answer
39 views
Filling not closed PathGeometry to the bottom
Suppose I have PathGeometry, consisting of lines, like this
(the rectangle == panel, for example Grid):
I want to fill them to the bottom of the panel, like this:
The quick and not very good ...
2
votes
3answers
81 views
How many moves to reach a destination? Efficient flood filling
I want to compute the distance of cells from a destination cell, using number of four-way movements to reach something. So the the four cells immediately adjacent to the destination have a distance ...
2
votes
6answers
81 views
How to expand a list with NULLs up to some length?
Given a list whose length <= N, what is the best / most efficient way to fill it up with trailing NULLs up to length (so that it has length N).
This is something which is a one-liner in any decent ...
2
votes
1answer
96 views
how to fill the empty space inside an image generated by matlab function “scatter”
My image is a 2D surface of a protein, and I use matlab function "scatter" to display the image, so there are some white empty spaces in it.
I want to fill them with colors,but the question is that ...
2
votes
2answers
142 views
Two time series plots and shading between them…MATLAB
I am using MATLAB to plot two lines of a time series... (a min and max line)
I have the points converging at a single point at the end of the data.
I am trying to fill the area in between the lines ...
2
votes
2answers
153 views
AS3 Possible to check if mask is completely filled?
With brush_mc you can brush over a mask, wich turns the pixels to transparent in brush strokes.
So visually it erases the mask and the masked movieclip appears.
I want to trace, if the mask is ...
2
votes
4answers
239 views
Arrays.fill with multidimensional array in Java
How can I fill a multidimensional array in Java without using a loop? I've tried:
double[][] arr = new double[20][4];
Arrays.fill(arr, 0);
This results in java.lang.ArrayStoreException: ...
2
votes
1answer
148 views
Resize image to fit perfectly a determined box
I want to do the following :
I need to resize images to fit and fill enterly 100x100 pixel box
not all image are perfect squares, and thats my problem for this task
I want to determine wich side ...
2
votes
0answers
97 views
How could I instantiate a Profiled DataAdapter to use with MVC MINI PROFILER?
None of the Command Object have Fill methods, but in the former way I was doing I could instantiate a new OracleDataAdapter. How could I instantiate a Profiled DataAdapter to profile my database ...
2
votes
3answers
61 views
How do I fill a grid based shape with tris
I have a shape defined by an array of 2D points (clockwise around the shape) and a height value. The points conform to a grid layout with whole numbers, however there can be negative space in the ...
2
votes
1answer
163 views
std::fill_n on array of non-PODs possible for first initializing?
is it possible to use std::fill to initialize an array of non-POD types?
The documentation says that std::fill uses operator= to initialize the array not placement copy construction. The assignment ...
2
votes
1answer
30 views
ImageGD not filling correctly
Hay, I'm using this code to generate an image and fill it with a gray colour.
$canvas = imagecreatetruecolor(100, 100);
$gray = imagecolorallocate($canvas, 0xEE, 0xEE, 0xEE);
imagefill($canvas, 0, 0, ...
2
votes
1answer
309 views
MySQL fill the memory and freezes
I have problem with my MySQL server (Debian/Lenny). Sometimes MySQL daemon fill memory and pages are not accesible. Restart of MySQL daemon helps, sometimes I have to restart whole server (can't ...
2
votes
3answers
431 views
WPF: StackPanel with FirstChildFill?
I want a logical and simple way of producing a layout with one control set to fill and the rest to dock. I could use:
<DockPanel LastChildFill="True">
<Button Content="3" ...
2
votes
1answer
631 views
Fill Android Tab with custom pic and/or colour
Hey all I've created Google's exmaple of a tab layout
HelloTabWidget.java:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
...
2
votes
2answers
1k views
WPF Datagrid Performance
I have a very large comma-seperated text-file. I need to display this in a WPF Datagrid, which method would result in the highest performance of loading all the data to the grid? I'm only aware of two ...
2
votes
2answers
1k views
moving a path with a repeating Bitmap image in android
I'm currently writing an android side-scrolling game and am having trouble filling a path with a repeating bitmap image. I'm creating a path from a number of coordinates to make up the "ground" area. ...
2
votes
1answer
485 views
C# SqlDataAdapter.Fill giving error about data conversion when passed datatable parameter
I'm trying to fill a datatable using a SqlDataAdapter in C#. I'm not very familiar with the objects, and am basically working off a template of someone else's code to try to figure out how it works. ...
2
votes
1answer
249 views
filling array gradually with data from user
I'm trying to fill an array with words inputted by user. Each word must be one letter longer than previous and one letter shorter than next one. Their length is equal to table row index, counting from ...
2
votes
2answers
140 views
Are there any other way to fill a Datatable in ADO.Net without using dataadaptor.Fill method?
Are there any other fast way to fill a Data table in ADO.Net without using Data adaptor.Fill method?
2
votes
2answers
3k views
WPF Polyline relative point values and stretch for drawing a graph
I'm trying to create a pretty simple graphing component that consists of a series of Polylines within the same grid cell that represent graph lines. My strategy is to look at all the points in my ...
2
votes
4answers
1k views
How do I do a iPhone button-like fill
I'd like to spruce up some of the user controls I use and thought some attractive fills should do the job (part of it perhaps). Like the fill in the background of iPhone buttons or the Office 2007 ...
2
votes
2answers
2k views
zerofill a interger php
Hay, how would i go about 'zero filling' an integer?
ie
1 becomes 0001
40 becomes 0040
174 becomes 0174
Thanks
2
votes
2answers
464 views
How bad is opening and closing a SQL connection for several times? What is the exact effect?
For example, I need to fill lots of DataTables with SQLDataAdapter's Fill() method:
DataAdapter1.Fill(DataTable1);
DataAdapter2.Fill(DataTable2);
DataAdapter3.Fill(DataTable3);
...