473,699 Members | 2,697 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

vector<vector<P oint3D> >

Hi everyone,

Here about what it is.

vector<vector<P oint3D> > pVector0;

pVector0 is a vector of vector of 3D points.

pVector0[i] is a vector of 3D points.

pVector0[i][j] is a 3D point.

I wanted to add a point pt3D to the m vector in pVector0, I have
write these two instructions which belong to a C++ program.

vector< vector<Vector3D > > pVector0;
pVector0[m].push_back(pt3D );

I have as error message: Segmentation fault (core dumped)

Could anyone give me suggestions?

Thanks!

hannibal
Jul 23 '05 #1
6 4216
ha************@ yahoo.fr wrote:
Here about what it is.

vector<vector<P oint3D> > pVector0;

pVector0 is a vector of vector of 3D points.

pVector0[i] is a vector of 3D points.

pVector0[i][j] is a 3D point.

I wanted to add a point pt3D to the m vector in pVector0, I have
write these two instructions which belong to a C++ program.

vector< vector<Vector3D > > pVector0;
pVector0[m].push_back(pt3D );

I have as error message: Segmentation fault (core dumped)

Could anyone give me suggestions?


What's the size of 'pVector0'? You're trying to access the m-th
element of it, do you know if it even exists?

V
Jul 23 '05 #2
Victor Bazarov wrote:
ha************@ yahoo.fr wrote:
Here about what it is.

vector<vector<P oint3D> > pVector0;

pVector0 is a vector of vector of 3D points.

pVector0[i] is a vector of 3D points.

pVector0[i][j] is a 3D point.

I wanted to add a point pt3D to the m vector in pVector0, I have
write these two instructions which belong to a C++ program.

vector< vector<Vector3D > > pVector0;
pVector0[m].push_back(pt3D );

I have as error message: Segmentation fault (core dumped)

Could anyone give me suggestions?

What's the size of 'pVector0'? You're trying to access the m-th
element of it, do you know if it even exists?

V

The size of pVector0 is not known.
I wanted to add m empty vectors to the vector and to add the point pt3D
to m vector.

vector< vector<Vector3D > > pVector0;
pVector0.insert (pVector0.end() ,m);
pVector0[m].push_back(pt3D );
Jul 23 '05 #3
ha************@ yahoo.fr wrote:
Victor Bazarov wrote:
ha************@ yahoo.fr wrote:
Here about what it is.

vector<vector<P oint3D> > pVector0;

pVector0 is a vector of vector of 3D points.

pVector0[i] is a vector of 3D points.

pVector0[i][j] is a 3D point.

I wanted to add a point pt3D to the m vector in pVector0, I have
write these two instructions which belong to a C++ program.

vector< vector<Vector3D > > pVector0;
pVector0[m].push_back(pt3D );

I have as error message: Segmentation fault (core dumped)

Could anyone give me suggestions?
What's the size of 'pVector0'? You're trying to access the m-th
element of it, do you know if it even exists?

V


The size of pVector0 is not known.


REALLY? Have you tried calling pVector0.size() ?
I wanted to add m empty vectors to the vector and to add the point pt3D
to m vector.
If you add m vectors to the vector, what's their indices?

vector< vector<Vector3D > > pVector0;
pVector0.insert (pVector0.end() ,m);
pVector0[m].push_back(pt3D );


V
Jul 23 '05 #4
ha************@ yahoo.fr wrote:
Hi everyone,

Here about what it is.

vector<vector<P oint3D> > pVector0;

pVector0 is a vector of vector of 3D points.

pVector0[i] is a vector of 3D points.

pVector0[i][j] is a 3D point.

I wanted to add a point pt3D to the m vector in pVector0,
Are you sure this 'm' vector exists?
I have
write these two instructions which belong to a C++ program.

vector< vector<Vector3D > > pVector0;
pVector0[m].push_back(pt3D );


If that's the only 2 lines you wrote, there's a problem. The vector is
empty and you are trying to access it's mth element. Illegal.

If you want to add a point, you first need to add a vector of points.

std::vector<Vec tor3D> vector_of_point s;
vector_of_point s.push_back(a_p oint);

pVector0.push_b ack(vector_of_p oints);

Remember: pVector0 is a vector of vectors of points.
Jonathan

Jul 23 '05 #5
Victor Bazarov wrote:
ha************@ yahoo.fr wrote:
Victor Bazarov wrote:
ha************@ yahoo.fr wrote:

Here about what it is.

vector<vector<P oint3D> > pVector0;

pVector0 is a vector of vector of 3D points.

pVector0[i] is a vector of 3D points.

pVector0[i][j] is a 3D point.

I wanted to add a point pt3D to the m vector in pVector0, I have
write these two instructions which belong to a C++ program.

vector< vector<Vector3D > > pVector0;
pVector0[m].push_back(pt3D );

I have as error message: Segmentation fault (core dumped)

Could anyone give me suggestions?


What's the size of 'pVector0'? You're trying to access the m-th
element of it, do you know if it even exists?

V

The size of pVector0 is not known.

REALLY? Have you tried calling pVector0.size() ?


I have tried calling pVector0.size() ,
pList0.size() = 0
I wanted to add m empty vectors to the vector and to add the point
pt3D to m vector.

If you add m vectors to the vector, what's their indices?


I added m vectors at the end of the vector.


vector< vector<Vector3D > > pVector0;
pVector0.insert (pVector0.end() ,m);
pVector0[m].push_back(pt3D );

V

Jul 23 '05 #6
Jonathan Mcdougall wrote:
ha************@ yahoo.fr wrote:
Hi everyone,

Here about what it is.

vector<vector <Point3D> > pVector0;

pVector0 is a vector of vector of 3D points.

pVector0[i] is a vector of 3D points.

pVector0[i][j] is a 3D point.

I wanted to add a point pt3D to the m vector in pVector0,

Are you sure this 'm' vector exists?

I have
write these two instructions which belong to a C++ program.

vector< vector<Vector3D > > pVector0;
pVector0[m].push_back(pt3D );

If that's the only 2 lines you wrote, there's a problem. The vector is
empty and you are trying to access it's mth element. Illegal.

If you want to add a point, you first need to add a vector of points.

std::vector<Vec tor3D> vector_of_point s;
vector_of_point s.push_back(a_p oint);

pVector0.push_b ack(vector_of_p oints);

Remember: pVector0 is a vector of vectors of points.
Jonathan

Thank you for your guys idea.

hannibal
Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
6822
by: Christian Schmidbauer | last post by:
Hello! I prepare my XML document like this way: ------------------------------------------------------- PrintWriter writer; Document domDocument; Element domElement; // Root tag
2
3214
by: Eshrath | last post by:
Hi, What I am trying to do: ======================= I need to form a table in html using the xsl but the table that is formed is quite long and cannot be viewed in our application. So we are writing one object in C# which will take the entire table tag contents and renders. Ie., we need to pass "<table>………… <thead>……</thead>. <tr>.<td> <td>..<tr>.<td> <td> </table>" content to
2
10559
by: Donald Firesmith | last post by:
I am having trouble having Google Adsense code stored in XSL converted properly into HTML. The <> unfortunately become &lt; and &gt; and then no longer work. XSL code is: <script type="text/javascript"> <!]> </script> <script type="text/javascript"
0
2061
by: Arne Schirmacher | last post by:
I want to display a MySQL database field that can contain HTML markup. If I use <esql:get-string> then I get all of the database field, but all tags are escaped which is not what I want. If I use <esql:get-xml> the tags are not escaped, but only the first part of the database field is displayed. The content of the database field is: "<h1>Title</h1><h2>Subtitle</h2>"
34
11051
by: Mark Moore | last post by:
It looks like there's a pretty serious CSS bug in IE6 (v6.0.2800.1106). The HTML below is validated STRICT HTML 4.01 and renders as I would expect in Opera, FrontPage, and Netscape. For some reason, there's an annoying vertical gap between adjacent rules that doesn't go away. This looks like IE6 is incorrectly setting the margin to some arbitrary value. Does anyone know if this is a known bug at MS? If you know of one, post the...
11
13706
by: Les Paul | last post by:
I'm trying to design an HTML page that can edit itself. In essence, it's just like a Wiki page, but my own very simple version. It's a page full of plain old HTML content, and then at the bottom, there's an "Edit" link. So the page itself looks something like this: <HTML><HEAD><TITLE>blah</TITLE></HEAD><BODY> <!-- TEXT STARTS HERE --> <H1>Hello World!</H1> <P>More stuff here...</P>
2
2448
by: bissatch | last post by:
Hi, I am currently writing a simple PHP program that uses an XML file to output rows for a 'Whats New' page. Once written, I will only require updating the XML file and any pages that use the XML file will get their row content from there. The rows may look some thing similar to this: - Added <a>mailing list</a> functionality to <a>homepage</a> - Competition winners announced, click <a>here</a>
0
1090
by: vdex42 | last post by:
Apologies if this has been asked before, but I haven't been able to find the answer to this yet: My problem is that .NET will not allow me to insert escaped '>' characters (i.e. &gt;) within the text property of asp buttons, it seems to strip out only those type of characters, because other escape codes DO work (eg. &quote;) For example <asp:button Runat=server text="test &gt;" ID=txtTest></asp:button>
2
2035
by: santaji | last post by:
I am getting xml string in request attribute in following format &lt;files&gt; &lt;file&gt; &lt;filename&gt;somefile.ext&lt;/filename&gt; &lt;/file&gt; &lt;files&gt; the above string I want to convert to tags. expected output after xsl transformation - <files> <file>
1
5484
by: VaidehiPawar | last post by:
I am a beginner level in xml..my output page does not convert &gt &lt it shows something like this " &lt;b&gt;Location.&lt;/b&gt;&lt;br /&gt; &lt;UL&gt;&lt;LI&gt;Park Central New York " can anyone help? here is my code <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/">
0
8615
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9174
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9034
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8914
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
5874
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4376
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4629
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3057
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2347
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.