Re: RayCasting: why i get a more width vertical lines on square grid size? Programming Software Development by cambalinho … VertDist < HorizDist Then WallDistance = Math.Floor(VertDist) OffSetGrid = VertY Mod ObjectSize clr.Color…OffSetGrid = HorizX Mod ObjectSize WallDistance = Math.Floor(HorizDist) clr.Color = Color.DarkBlue End If… Re: how to create a simple elevator simulation? Programming Software Development by trueframe To make a basic elevator simulation, first, identify the floors and the elevator's capacity. Then, use loops and conditionals in programming to mimic its movement. Include buttons for users to call the elevator and select floors. Test thoroughly for accuracy. floor() Programming Software Development by Jadellll Hi, I'm looking for the module that floor() is located in. I would have assumed it would be … Re: floor() Programming Software Development by Gribouillis You can also visit this site [url]http://pydoc.org/[/url] and fill the form with [code]floor[/code] to discover it's in the math module ... floor conversion error Programming Software Development by MareoRaft … std; typedef std::vector<double> Vec; //Vector Vec floor( const Vec& y ){ unsigned n = y.size(); Vec bottom…); for( unsigned e=0; e<n; ++e ) bottom[e] = floor(y[e]); return bottom; } [/CODE] Re: floor conversion error Programming Software Development by danb737 … could use STL to do this for you applying the floor function on your vector and returning the result in another…(first.size()); std::pointer_to_unary_function <double, double> floorObject(std::floor); std::transform(first.begin(), first.end(), second.begin(), floorObject); return… Re: floor conversion error Programming Software Development by MareoRaft My actual code was not using the std namespace. Therefore I needed "std::floor" instead of just "floor". Thanks StuXYZ and akhena for your advice. :p Floor plan map on a SharePoint page Programming Web Development by tom_benton I'd like to find a software or an online program that allow you to map the floor plan of any house to a SharePoint site. I have a floor plan image and seems unable to get the rooms and amenities documented over the map. Any ideas? Re: Floor plan map on a SharePoint page Programming Web Development by LastMitch >I'd like to find a software or an online program that allow you to map the floor plan of any house to a SharePoint site. Is this similiar to Google Map? Re: Floor plan map on a SharePoint page Programming Web Development by tom_benton I am afraid it's not. A floor plan is kinda like a map but it cannot fit into Google Maps. Re: Floor plan map on a SharePoint page Programming Web Development by LastMitch >A floor plan is kinda like a map but it cannot fit into Google Maps. OK. You can take a look at this: http://floorplanmapper.com/blog/?tag=sharepoint Re: floor() Programming Software Development by tzushky I think you need the math module: [url]http://docs.python.org/lib/module-math.html[/url] For adding things permanently, I'm not sure, but you can use the sys.path.append(FolerPath) at the beginning of your program for having direct recognition of a module in that folder... If you want your modules to be available in other programs, maybe edit the … Re: floor() Programming Software Development by vegaseat Ignore this post ... Re: floor() Programming Software Development by Jadellll Thanks. I'm used to a language that autoloads all math funcs :) problem using floor function Programming Software Development by I_Empire …<< " " << floor(input) << endl; if(input == floor(input)) return input; input = input * 10; …[ATTACH]12149[/ATTACH] which i cant understand the floor and the input are the same so why the… some inputs also do this: [ATTACH]12150[/ATTACH] floor(23450) = 23499 weird? if anybody has another approach… Re: Javascript Floor calculator Programming Web Development by mehul12345 …== " " ) { valid = false; alert("no floor chosen") return valid; } </script> html code: &… &#163;25 <input type='radio' name='floor' value='0' class='radio'><br> … &#163;20 <input type='radio' name='floor' value='2' class='radio'><br> Laminate… Re: problem using floor function Programming Software Development by I_Empire … second problem (see the third picture in my first post) : floor(2345) = 2344 this is a problem with the… Need Help with Decimal Math.Round and Floor Programming Software Development by bill_kearns …(hf_savingspct.Value), 2); decimal m_savings = (a - (a * b)); m_savings = Math.Floor(m_savings * 100) / 100; return m_savings; } protected decimal getCycleCost() { decimal a…hf_billingcycle.Value); decimal m_cyclecost = (a - (a * b)) * c; m_cyclecost = Math.Floor(m_cyclecost * 100) / 100; return m_cyclecost; }[/CODE] [COLOR="Green"… using floor and multiple lines of data Programming Software Development by lismoker … it to loop. Also I am unable to get the floor problem to work. Any help would be appreciated! Thanks! [CODE… average=bill/used; //round gas bill to two digits bill = floor(bill*100+0.5)/100.0; //output information Out <… Javascript Floor calculator Programming Web Development by mehul12345 … of flooring required • the width and length required, and the floor area (length x width) in m2 • the number of 2m2… will need to purchase sufficient packs to cover the specified floor space. Before performing the calculation, the application should validate the… Re: Python Get Root Floor and Root Ceiling of a Number Programming Software Development by vegaseat Try ... sf = "For {} Root floor: {}, Ceiling: {}" n = 91 print(sf.format(n, math.floor(n**0.5), math.ceil(n**0.5))) n = 161 print(sf.format(n, math.floor(n**0.5), math.ceil(n**0.5))) What is required for a 25 pcs, 4 floor building network? Hardware and Software Networking by mfadel … all of your efforts, Network Description: We have a 4 floor building, We want to implement a network, The number of… AutoCad Floor Plans Hardware and Software Microsoft Windows by slade2627 Hi guys!!! just wondering if you could give me websites where i can find simple floor plans for my AutoCAD subject. It would really mean a lot If you could site some. Thanks.. Re: AutoCad Floor Plans Hardware and Software Microsoft Windows by caperjack … you could give me websites where i can find simple floor plans for my AutoCAD subject. It would really mean a… Re: AutoCad Floor Plans Hardware and Software Microsoft Windows by Bob_180_Bob ….ph/images?hl=tl&rlz=1C1GGLS_enPH359PH359&q=AutoCAD+floor+plans&um=1&ie=UTF-8&ei… Using ASP.net for Floor Layout UI Programming Web Development by jremio … drop "chairs" and "tables" onto a floor layout (grids) and save it to their profile by storing… Using a 2d array to make a floor plan Programming Software Development by Pittpitu … for. The application has to be able to make a floor plan for a casino. The casino has to create the… Python Get Root Floor and Root Ceiling of a Number Programming Software Development by BustACode Also because of my work in number theory, I often need to have the root floor and root ceing of a number. This is my function for computing those two numbers from a target number. Re: Python Get Root Floor and Root Ceiling of a Number Programming Software Development by Gribouillis Why not use `math.floor()` and `math.ceil()` ? Re: floor conversion error Programming Software Development by StuXYZ There is nothing intrinsically wrong with your code. i.e. in a stand alone test env. it works. The error you are getting comes from your library matrixOptLibrary.h. There are any number of reasons that this code is going to break it. (a) the using namespace std; , and more likely (b) that your typedef is in a include file and it is not in a …