Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
4answers
4k views

ASP.NET MVC - Get Current Area Name in View or Controller

How do you get the current area name in the view or controller? Is there anything like ViewContext.RouteData.Values["controller"] for areas?
14
votes
7answers
4k views

Administration Area in Asp.Net MVC

My question may be obvious but I'd like to build a well-designed web application. As for any administration area, the admin should be able to list/create/delete/modify users, articles, posts, etc... ...
8
votes
10answers
5k views

Compute the area of intersection between a circle and a triangle?

How does one compute the area of intersection between a triangle (specified as three (X,Y) pairs) and a circle (X,Y,R)? I've done some searching to no avail. This is for work, not school. :) It ...
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 ...
6
votes
4answers
448 views

Given a set of rectangles, find 3 bounding rectangles with the smallest area

I am trying to implement redraw regions with up to 3 regions but can't think of an efficient way to find the best set of regions given a set of rectangles. So there would be a set of rectangles and I ...
6
votes
5answers
1k views

How to divide an area composed of small squares into bigger rectangles?

Where would i go to look for algorithms that take a 2d grid of values that are either 0 or 1 as input and then identifies all possible non-overlapping rectangles in it? In a more practical ...
5
votes
2answers
70 views

Python: Histogram with area normalized to something other than 1

Is there a way to tell matplotlib to "normalize" a histogram such that its area equals a specified value (other than 1)? The option "normed = 0" in n, bins, patches = plt.hist(x, 50, normed=0, ...
5
votes
2answers
145 views

Programmatically take a screenshot of specific area

Like you can see in my code, I take a screenshot and save it to the photo album. //for retina displays if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)]) { ...
4
votes
2answers
80 views

How can I calculate the area within a contour in R?

I'm wondering if it is possible to caclulate the area within a contour in R. For example, the area of the contour that results from: sw<-loess(m~l+d) mypredict<-predict(sw, fitdata) # Where ...
4
votes
2answers
91 views

jQuery function to resize a set of images to a given area (not height or width)

I'm trying to write a jQuery function that will resize a set of images according to a specified area, rather than simply a max height or width. There's a similar question here: resize image by area, ...
4
votes
1answer
110 views

jQuery Box Prob

I am trying to solve a rectangle problem using jQuery. Basically, I have 3 square boxes which fix inside a larger box. I know the larger box has a max-width of 500px. I do not know what the sizes of ...
4
votes
2answers
127 views

What are some reasonable alternatives to an image <area> map?

Is <area> still the best way to handle irregular navigation menus, or is there a better way? My navigation menu looks like this:
4
votes
1answer
234 views

Matlab area() edge colors cover the axes lines, is there a work around?

figure('Color', 'w') box on x = 1:10; y = 5 * x + 2; area(x, y, 'FaceColor', 'b', 'EdgeColor', 'b') This code creates a figure with the area under the curve shaded blue. The EdgeColor property sets ...
4
votes
1answer
269 views

Area covered by a point cloud with R

I have a cloud of points scattered in a 2D Euclidean space. I would like to calculate the area inside the polygon linking the most extreme (=peripheral) points of the cloud. In other words, I would ...
4
votes
3answers
561 views

Draw and paint areas in images

How to draw areas in a image, based on points, like draw areas in google maps? Dynamically with javascript. Editing: The question is about to put a map image on the page and draw an area on the top ...
4
votes
2answers
2k views

Calculate area under FFT graph in MATLAB

Currently I did a FFT of a set of data which gives me a plot with frequency at x axis and amplitude at y axis. I would like to calculate the area under the graph to give me the energy. I am not sure ...
4
votes
3answers
604 views

Algorithm for fitting 2D polygons in an area?

Is there a standard for this? Algorithm name? Say: I have 10 polygons of different sizes. I have an area of specific size. I want to know how to fill the most polygons in that area, and how they are ...
4
votes
2answers
3k views

Finding the overlapping area of two rectangles (in C#)

Edit: Simple code I used to solve the problem in case anyone is interested (thanks to Fredrik): int windowOverlap(Rectangle rect1, Rectangle rect2) { if (rect1.IntersectsWith(rect2)) ...
3
votes
3answers
68 views

html area tag with holes

The problem I have about using the map & area tag is that I havent been able to find out a solution to having "holes" in the area, for example imagine a lake on map, you dont want that area to be ...
3
votes
1answer
170 views

refresh drawing area in gtk

I have a bunch of drawing areas (they are actually cairo surfaces, but I don't think it matters too much) in a scrolled window, and I would like to refresh the drawings. However, when I redraw the ...
3
votes
3answers
1k views

Apply css to AREA MAP

I'm created a very large map with many poly areas (over 20 coordinates each) for regions within the map. However, you can't add css to the AREA tag as I was told it's not a visible element. What I ...
3
votes
3answers
265 views

Find element position on screen

What I need is a function to retrieve the size of an element, be it a Java Applet window in a browser, text boxes in programs, applications window and so on. Now I don't know what this kind of ...
3
votes
1answer
225 views

How to calculate area of contact of one rectangular cuboid to its adjacent cuboids

I'm trying to position different-sized rectangular cuboids next to each other such that the area of contact between those is maximized. In a brute-force kind of way I'm searching for a possible ...
3
votes
4answers
901 views

How do you Javascript style area elements on mouseover?

I've got an image map w/ 20 area elements, only four shown below. I want to style each area so that a blue border appears whenever a user hovers over it - all the area shapes are rectangles. <map ...
3
votes
1answer
461 views

How Do I Calculate the Area of a Polygon in a MySQL Database When the Polygon's Points are Lat Longs?

How do I calculate the area of a polygon stored in a MySql database? The polygons' points are lat longs. So, degrees and minutes seem to be causing a problem. I've tried: SELECT AREA( my_polygon ) ...
3
votes
6answers
2k views

Java: calculating area of a triangle

import java.lang.Math; import java.awt.* public class Triangle implements Shape { java.awt.Point a; java.awt.Point b; java.awt.Point c; public Triangle(java.awt.Point a, ...
3
votes
3answers
1k views

Drawing area at Google Map

Please see the image : Any idea how to do that? drawing an area.
3
votes
2answers
1k views

OpenCV Grid Area

I want to find the non-white area of an image from a camera using OpenCV. I can already find circles using images from my web cam. I want to make a grid or something so I can determine the percent of ...
3
votes
5answers
7k views

area of intersection between circle and rectangle

i'm looking for a fast way to determine the area of intersection between a rectangle and a circle (I need to do millions of these calculations) A specific property is that in all cases the circle ...
2
votes
2answers
37 views

jQuery affect elements with same class as clicked or hovered elements

I'm working on an application that's like a map of parts componing a game, and when i hover an area with a certain class, i need an image with the same class as the area to fade in. This is what i ...
2
votes
1answer
56 views

Using a project instead of an area in MVC3

I know how to use areas in MVC3 - and I think it works very well, but I really want to make a higher level of seperation in my project. I have multiple projects in an empty solution, a Domain project ...
2
votes
2answers
161 views

How can I show the outline of an area of a map of an image (html, javascript)?

If you take a quick look at the two links below, you'll see most people want to get rid of the outline around the area of a map on an image. I see this occurs on the MAC OS X platform, exclusively. ...
2
votes
0answers
220 views

JFreeChart: get Area or Elements in zoomed Scatterplot

I've got the following problem. I want to zoom-in a Scatterplot and then select all the displayed elements. It would be sufficient to somehow get the displayed area in the zoomed-in Scatterplot. From ...
2
votes
2answers
113 views

What is the reason of this weird area subtraction issue?

While I was coding an algorithm of collision detection I have come up at this problem. It is something weird which is beyond my understanding. The problem here is that if in my algorithm, presented ...
2
votes
2answers
210 views

How to test if a point inside area with lat/lon and radius using Java?

I've to write a method that has the following signature public class Position { double longitude; double latitude; } boolean isInsideTheArea(Position center, double radius, Position point); So if ...
2
votes
1answer
360 views

ASP.NET MVC 3 route issues

I'm working on the http://mvcforum.codeplex.com project. We have 2 areas, Forum and ForumAdmin. I have a few named routes, to make a nice URL with forum/topic titles in the URL: ...
2
votes
4answers
466 views

How to generate random shapes given a specified area.(R language).?

My question is this.. I am working on some clustering algorithms.. For this first i am experimenting with 2d shapes.. Given a particular area say 500sq units .. I need to generate random shapes for a ...
2
votes
2answers
561 views

Calculating an area under a continuous density plot

I have two density curves plotted using this: Network <- Mydf$Networks quartiles <- quantile(Mydf$Avg.Position, probs=c(25,50,75)/100) density <- ggplot(Mydf, aes(x = Avg.Position, fill = ...
2
votes
2answers
169 views

How do you verify that a 2d bitmap is contiguous?

Let's say you have the following structure in C#: struct Piece : IEquatable<Piece> { public readonly int size; public readonly bool[,] data; public Piece(Piece p) { size = ...
2
votes
6answers
357 views

How do you calculate the area of a series of random points?

So I'm working on a piece of code to take positional data for a RC Plane Crop Duster and compute the total surface area transversed (without double counting any area). I cannot figure out how to ...
2
votes
1answer
413 views

Second layer of authentication in ASP.NET MVC2 application

We have an ASP.NET application that's partly in MVC (the rest of it being a legacy webforms-based CMS). The application is authenticated via Forms Authentication, although any user accessing it from ...
2
votes
2answers
522 views

Get HTML area tag name from Javascript?

I would like to display area tag name after a person clicks on it. Unfortunately when I use code below for map area I get undefined name of obiekt name. It's weird because for textbox 'kot' it works ...
2
votes
2answers
190 views

Way to determine the visible size of the web page

Is there a way for knowing what size was the visible portion of a page? Are there any services that provide this? I mean, not just screen resolution, but available browser area. When a user has a lot ...
2
votes
4answers
436 views

Summarize object area with a Hash in Ruby

require 'sketchup' entities = Sketchup.active_model.entities summa = Hash.new for face in entities next unless face.kind_of? Sketchup::Face if (face.material) ...
2
votes
1answer
525 views

How do I get javascript-generated image maps to work with internet explorer?

I'm using javascript to generate a high resolution grid for an image that I generated on a web server. The high-resolution grid is composed of a 'map' element with hundreds of 'area' child elements. ...
2
votes
2answers
647 views

How do I limit the following cursor to a specific area

I have a flash cs3 file where I want a mask to move on the y axis (up and down) when the user is scrolling over the navigation area. In my code, I have: maskMC.startdrag(); How do I limit the area ...
2
votes
1answer
863 views

How do I color part of a graph under a line in MATLAB?

I would like to have in the same figure a line plot and a part of the graph under the line colored (a confidence interval). How can I do this in MATLAB? I already tried the following, but it doesn't ...
1
vote
1answer
21 views

Finding area of the image

I used connected component labeling algorithm (bwconncomp) to label the different parts of a binary image (MATLAB). Now i need to calculate the area of different labels and remove the labels with ...
1
vote
1answer
28 views

ASP.Net MVC : How to combine area AND localization

For an wide application, I need to use localization. I'm planning to use this method for the localization: ...
1
vote
1answer
44 views

Embedded image in portable area not showing on deployment

I am using MVC 2 on VS2010 and IIS 7. I created a portable area with some images embedded into it. I tried to create routing rule two ways at the time of portable area registeration. Following are the ...

1 2 3 4